Open
Description
I tried this code:
#![no_std]
#[doc(no_inline)]
pub use core::marker::Copy;
I expected to see this happen: Rustdoc links to https://doc.rust-lang.org/nightly/core/macro.Copy.html.
Instead, this happened: Rustdoc links to https://doc.rust-lang.org/nightly/core/marker/derive.Copy.html.
This is wrong in two ways:
- It uses
macro.Item.html
andderive.Item.html
inconsistently - It links to the
marker
submodule in the re-export crate but not when documentingcore
(pub macro
defined in submodule is shown at the wrong path #74355).
This issue is only for tracking 1.
Thanks @danielhenrymantilla for the bug report!
Meta
rustdoc --version
: rustdoc 1.50.0-nightly (0edce6f 2020-12-24)