For example, given `foo.rs`: ``` rust pub const MAGIC: u32 = 0xDEADBEEF; ``` And `bar.rs`: ``` rust extern crate foo; pub use MAGIC = foo::MAGIC; ``` The generated rustdocs for `bar.rs` show something like: ## Constants `pub const MAGIC: u32 =`