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