mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			214 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			214 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![crate_name = "module_inner"]
 | |
| #![deny(rustdoc::broken_intra_doc_links)]
 | |
| /// [SomeType] links to [bar]
 | |
| pub struct SomeType;
 | |
| pub trait SomeTrait {}
 | |
| /// [bar] links to [SomeTrait] and also [SomeType]
 | |
| pub mod bar {}
 | 
