mirror of
				https://git.proxmox.com/git/rustc
				synced 2025-10-31 02:13:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			227 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			227 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| // run-rustfix
 | |
| 
 | |
| trait WithType<T> {}
 | |
| trait WithRegion<'a> { }
 | |
| 
 | |
| trait Foo { }
 | |
| 
 | |
| impl<T> Foo for Vec<T>
 | |
| where
 | |
|     T: for<'a> WithType<&'a u32>
 | |
| //~^ ERROR `&` without an explicit lifetime name cannot be used here
 | |
| { }
 | |
| 
 | |
| fn main() {}
 | 
