mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-24 17:12:53 +00:00
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() { }
|