mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			172 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			172 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // check-pass
 | |
| 
 | |
| trait Trait<T> {
 | |
|     type Ty;
 | |
| }
 | |
| impl Trait<&u8> for () {
 | |
|     type Ty = ();
 | |
| }
 | |
| 
 | |
| fn test<'a, 'b>() -> impl Trait<&'a u8, Ty = impl Sized + 'b> {}
 | |
| 
 | |
| fn main() {}
 | 
