mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-21 19:33:16 +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() { }
|