rust/tests/ui/lifetimes/lifetime-errors/ex3-both-anon-regions-both-are-structs.rs
2023-01-11 09:32:08 +00:00

11 lines
150 B
Rust

struct Ref<'a> {
x: &'a u32,
}
fn foo(mut x: Vec<Ref>, y: Ref) {
x.push(y);
//~^ ERROR lifetime may not live long enough
}
fn main() {}