]> git.lizzy.rs Git - rust.git/blob - src/test/ui/underscore-lifetime/underscore-lifetime-elison-mismatch.rs
Merge commit 'd3a2366ee877075c59b38bd8ced55f224fc7ef51' into sync_cg_clif-2022-07-26
[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() {}