mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-28 11:38:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			159 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			159 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| pub struct Bar;
 | |
| 
 | |
| impl Bar {
 | |
|     pub fn bar(_: u8) -> hidden::Hidden {
 | |
|         hidden::Hidden
 | |
|     }
 | |
| }
 | |
| 
 | |
| #[doc(hidden)]
 | |
| pub mod hidden {
 | |
|     pub struct Hidden;
 | |
| }
 | 
