mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			349 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			349 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // aux-build:issue-13698.rs
 | |
| // ignore-cross-compile
 | |
| 
 | |
| extern crate issue_13698;
 | |
| 
 | |
| pub struct Foo;
 | |
| // @!has issue_13698/struct.Foo.html '//*[@id="method.foo"]' 'fn foo'
 | |
| impl issue_13698::Foo for Foo {}
 | |
| 
 | |
| pub trait Bar {
 | |
|     #[doc(hidden)]
 | |
|     fn bar(&self) {}
 | |
| }
 | |
| 
 | |
| // @!has issue_13698/struct.Foo.html '//*[@id="method.bar"]' 'fn bar'
 | |
| impl Bar for Foo {}
 | 
