mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 18:24:04 +00:00
7 lines
109 B
Rust
7 lines
109 B
Rust
fn f<'a: 'static>(_: &'a i32) {}
|
|
|
|
fn main() {
|
|
let x = 0;
|
|
f(&x); //~ERROR does not live long enough
|
|
}
|