mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +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() { }
|