mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 21:16:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			167 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			167 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![allow(warnings)]
 | |
| 
 | |
| trait MyTrait { }
 | |
| 
 | |
| struct Foo<'a> { x: &'a u32 }
 | |
| 
 | |
| impl MyTrait for Foo {
 | |
|     //~^ ERROR implicit elided lifetime not allowed here
 | |
| }
 | |
| 
 | |
| fn main() {}
 | 
