Closed
Description
lib.rs:
/// A!
///
/// # Errors
///
/// None?
pub struct A;
/// [x][A], [y][A#errors], [z]
///
/// [z]: A#errors
pub struct B;
The documentation of B is rendered by rustdoc as ` x, [y][A#errors], z `, in which the x link correctly points to the documentation of A as expected, the y link is unrendered, and the z link points to href="A#errors".
I would expect both y and z to have href="struct.A.html#errors".
Mentioning the tracking issue: #43466