mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-24 17:12:53 +00:00
8 lines
187 B
Rust
8 lines
187 B
Rust
fn foo(z: &mut Vec<(&u8,&u8)>, (x, y): (&u8, &u8)) {
|
|
z.push((x,y));
|
|
//~^ ERROR lifetime may not live long enough
|
|
//~| ERROR lifetime may not live long enough
|
|
}
|
|
|
|
fn main() { }
|