mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			377 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			377 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // issue #34843: rustdoc prioritises documenting reexports from the type namespace
 | |
| 
 | |
| mod inner {
 | |
|     pub mod sync {
 | |
|         pub struct SomeStruct;
 | |
|     }
 | |
| 
 | |
|     pub fn sync() {}
 | |
| }
 | |
| 
 | |
| //@ has namespaces/sync/index.html
 | |
| //@ has namespaces/fn.sync.html
 | |
| //@ has namespaces/index.html '//a/@href' 'sync/index.html'
 | |
| //@ has - '//a/@href' 'fn.sync.html'
 | |
| #[doc(inline)]
 | |
| pub use inner::sync;
 | 
