mirror of
				https://git.proxmox.com/git/rustc
				synced 2025-11-04 09:24:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			115 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			115 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
fn foo<T: 'static>() { }
 | 
						|
 | 
						|
fn boo<'a>() {
 | 
						|
    return;
 | 
						|
 | 
						|
    let x = foo::<&'a u32>();
 | 
						|
    //~^ ERROR
 | 
						|
}
 | 
						|
 | 
						|
fn main() {}
 |