mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			216 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			216 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
struct Ref<'a> {
 | 
						|
    x: &'a u32,
 | 
						|
}
 | 
						|
 | 
						|
fn foo<'a, 'b>(mut x: Vec<Ref<'a>>, y: Ref<'b>)
 | 
						|
    where &'a (): Sized,
 | 
						|
          &'b u32: Sized
 | 
						|
{
 | 
						|
    x.push(y);
 | 
						|
    //~^ ERROR lifetime may not live long enough
 | 
						|
}
 | 
						|
 | 
						|
fn main() {}
 |