mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			241 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			241 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ aux-build:rustdoc-hidden.rs
 | |
| //@ build-aux-docs
 | |
| //@ ignore-cross-compile
 | |
| 
 | |
| extern crate rustdoc_hidden;
 | |
| 
 | |
| #[doc(no_inline)]
 | |
| pub use rustdoc_hidden::Foo;
 | |
| 
 | |
| // @has inline_hidden/fn.foo.html
 | |
| // @!has - '//a/@title' 'Foo'
 | |
| pub fn foo(_: Foo) {}
 | 
