mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			331 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			331 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
//@ edition:2018
 | 
						|
//
 | 
						|
// Regression test for issue #67765
 | 
						|
// Tests that we point at the proper location when giving
 | 
						|
// a lifetime error.
 | 
						|
fn main() {}
 | 
						|
 | 
						|
async fn func<'a>() -> Result<(), &'a str> {
 | 
						|
    let s = String::new();
 | 
						|
 | 
						|
    let b = &s[..];
 | 
						|
 | 
						|
    Err(b)?; //~ ERROR cannot return value referencing local variable `s`
 | 
						|
 | 
						|
    Ok(())
 | 
						|
}
 |