mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			268 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			268 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ aux-build:rustdoc-hidden.rs
 | |
| //@ build-aux-docs
 | |
| //@ ignore-cross-compile
 | |
| 
 | |
| extern crate rustdoc_hidden;
 | |
| 
 | |
| // @has hidden_use/index.html
 | |
| // @!hasraw - 'rustdoc_hidden'
 | |
| // @!hasraw - 'Bar'
 | |
| // @!has hidden_use/struct.Bar.html
 | |
| #[doc(hidden)]
 | |
| pub use rustdoc_hidden::Bar;
 | 
