mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			346 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			346 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ aux-build:issue-17476.rs
 | |
| //@ ignore-cross-compile
 | |
| // https://github.com/rust-lang/rust/issues/17476
 | |
| 
 | |
| #![crate_name="issue_17476"]
 | |
| 
 | |
| extern crate issue_17476;
 | |
| 
 | |
| pub struct Foo;
 | |
| 
 | |
| //@ has issue_17476/struct.Foo.html \
 | |
| //      '//*[@href="http://example.com/issue_17476/trait.Foo.html#method.foo"]' \
 | |
| //      'foo'
 | |
| impl issue_17476::Foo for Foo {}
 | 
