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