mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			441 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			441 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![deny(rustdoc::broken_intra_doc_links)]
 | |
| 
 | |
| // Test intra-doc links on trait implementations with generics
 | |
| // regression test for issue #92662
 | |
| 
 | |
| use std::marker::PhantomData;
 | |
| 
 | |
| pub trait Bar<T> {
 | |
|     fn bar(&self);
 | |
| }
 | |
| 
 | |
| pub struct Foo<U>(PhantomData<U>);
 | |
| 
 | |
| impl<T, U> Bar<T> for Foo<U> {
 | |
|     fn bar(&self) {}
 | |
| }
 | |
| 
 | |
| // @has generic_trait_impl/fn.main.html '//a[@href="struct.Foo.html#method.bar"]' 'Foo::bar'
 | |
| /// link to [`Foo::bar`]
 | |
| pub fn main() {}
 | 
