mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
10 lines
347 B
Rust
10 lines
347 B
Rust
// run-rustfix
|
|
|
|
pub fn foo(x: &mut Vec<&u8>, y: &u8) { x.push(y); } //~ ERROR lifetime may not live long enough
|
|
|
|
pub fn foo2(x: &mut Vec<&'_ u8>, y: &u8) { x.push(y); } //~ ERROR lifetime may not live long enough
|
|
|
|
pub fn foo3<'a>(_other: &'a [u8], x: &mut Vec<&u8>, y: &u8) { x.push(y); } //~ ERROR lifetime may not live long enough
|
|
|
|
fn main() {}
|