rust/tests/ui/lifetimes/lifetime-errors/ex3-both-anon-regions-using-trait-objects.rs

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

8 lines
160 B
Rust
Raw Normal View History

2019-05-28 14:46:13 -04:00
fn foo(x:Box<dyn 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 18:22:22 +05:30
}
fn main() { }