mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 21:16:44 +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() {}
 | 
