mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			487 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			487 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // compile-flags: --crate-type lib --edition 2018
 | |
| 
 | |
| #![crate_name = "foo"]
 | |
| #![feature(rustdoc_internals)]
 | |
| 
 | |
| pub trait Foo {}
 | |
| 
 | |
| // @has foo/trait.Foo.html
 | |
| // @has - '//section[@id="impl-Foo-for-(T%2C)"]/h3' 'impl<T> Foo for (T₁, T₂, …, Tₙ)'
 | |
| #[doc(fake_variadic)]
 | |
| impl<T> Foo for (T,) {}
 | |
| 
 | |
| pub trait Bar {}
 | |
| 
 | |
| // @has foo/trait.Bar.html
 | |
| // @has - '//section[@id="impl-Bar-for-(U%2C)"]/h3' 'impl<U: Foo> Bar for (U₁, U₂, …, Uₙ)'
 | |
| #[doc(fake_variadic)]
 | |
| impl<U: Foo> Bar for (U,) {}
 | 
