]> git.lizzy.rs Git - rust.git/blob - src/test/ui/underscore-lifetime/underscore-lifetime-elison-mismatch.rs
normalize stderr
[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() {}