mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
17 lines
330 B
Rust
17 lines
330 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(())
|
|
}
|