Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
rustdoc-ui
/
redundant-explicit-links-123677.rs
blob: f3a5e81f89d8dcdb2513db657214da38bfd93af9 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
#![
deny
(
rustdoc
::
redundant_explicit_links
)]
mod
bar
{
/// [`Rc`](std::rc::Rc)
pub
enum
Baz
{}
}
pub
use
bar
::*;
use
std
::
rc
::
Rc
;
/// [`Rc::allocator`] [foo](std::rc::Rc)
pub
fn
winit_runner
()
{}