You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rprichard opened this issue
Apr 1, 2015
· 1 comment
Labels
A-macrosArea: All kinds of macros (custom derive, macro_rules!, proc macros, ..)T-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.
The text was updated successfully, but these errors were encountered:
steveklabnik
added
T-rustdoc
Relevant to the rustdoc team, which will review and decide on the PR/issue.
A-macros
Area: All kinds of macros (custom derive, macro_rules!, proc macros, ..)
labels
Apr 1, 2015
A-macrosArea: All kinds of macros (custom derive, macro_rules!, proc macros, ..)T-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.
On this page, https://doc.rust-lang.org/std/macro.unimplemented!.html, the [src] hyperlink points to https://doc.rust-lang.org/src/std/%3Ccore%20macros%3E.html#1, which does not exist.
The same problem happens on https://doc.rust-lang.org/std/macro.format!.html, which points to https://doc.rust-lang.org/src/std/%3Ccore_collections%20macros%3E.html#1-2. The filename here is
<core_collections macros>.html
, which matches the name thatcollections
is aliased to in libstd below.I think the problem happens with macros that are reexported from another crate.
This seems to be a complete list of reexported macros in Rust's standard library:
src/libstd/lib.rs:
The text was updated successfully, but these errors were encountered: