mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			339 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			339 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // Test various uses of structs with distinct variances to make sure
 | |
| // they permit lifetimes to be approximated as expected.
 | |
| 
 | |
| struct SomeStruct<T>(fn(T));
 | |
| 
 | |
| fn foo<'min,'max>(v: SomeStruct<&'max ()>)
 | |
|                   -> SomeStruct<&'min ()>
 | |
|     where 'max : 'min
 | |
| {
 | |
|     v
 | |
|     //~^ ERROR lifetime may not live long enough
 | |
| }
 | |
| 
 | |
| 
 | |
| fn main() { }
 | 
