]> git.lizzy.rs Git - rust.git/blob - src/test/ui/underscore-lifetime/underscore-lifetime-elison-mismatch.rs
Add 'src/tools/rust-analyzer/' from commit '977e12a0bdc3e329af179ef3a9d466af9eb613bb'
[rust.git] / src / test / ui / underscore-lifetime / underscore-lifetime-elison-mismatch.rs
1 fn foo(x: &mut Vec<&'_ u8>, y: &'_ u8) { x.push(y); }
2 //~^ ERROR lifetime may not live long enough
3
4 fn main() {}