mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			252 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			252 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
#[doc(hidden)]
 | 
						|
pub mod foo {
 | 
						|
    pub struct Foo;
 | 
						|
}
 | 
						|
 | 
						|
mod bar {
 | 
						|
    pub use self::bar::Bar;
 | 
						|
    mod bar {
 | 
						|
        pub struct Bar;
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
// @has issue_28537/struct.Foo.html
 | 
						|
pub use foo::Foo;
 | 
						|
 | 
						|
// @has issue_28537/struct.Bar.html
 | 
						|
pub use self::bar::Bar;
 |