rust/tests/ui/lifetimes/lifetime-errors/ex3-both-anon-regions-using-fn-items.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
150 B
Rust
Raw Normal View History

2017-09-12 16:48:01 +05:30
fn foo(x:fn(&u8, &u8), y: Vec<&u8>, z: &u8) {
2022-05-22 02:05:15 -04:00
y.push(z);
2022-04-01 13:13:25 -04:00
//~^ ERROR lifetime may not live long enough
//~| ERROR cannot borrow
2017-09-12 16:48:01 +05:30
}
fn main() { }