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

7 lines
133 B
Rust

fn foo(&mut (ref mut v, w): &mut (&u8, &u8), x: &u8) {
*v = x;
//~^ ERROR lifetime may not live long enough
}
fn main() { }