7 lines
133 B
Rust
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() { }
|