mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-14 12:12:23 +00:00
14 lines
220 B
Rust
14 lines
220 B
Rust
// edition:2018
|
|
|
|
struct HasLifetime<'a>(&'a bool);
|
|
|
|
async fn error(lt: HasLifetime) { //~ ERROR implicit elided lifetime not allowed here
|
|
if *lt.0 {}
|
|
}
|
|
|
|
fn no_error(lt: HasLifetime) {
|
|
if *lt.0 {}
|
|
}
|
|
|
|
fn main() {}
|