mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
15 lines
222 B
Rust
15 lines
222 B
Rust
|
//@ 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() {}
|