]> git.proxmox.com Git - rustc.git/blob - tests/ui/lifetimes/lifetime-errors/ex3-both-anon-regions-2.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / lifetimes / lifetime-errors / ex3-both-anon-regions-2.rs
1 fn foo(&mut (ref mut v, w): &mut (&u8, &u8), x: &u8) {
2 *v = x;
3 //~^ ERROR lifetime may not live long enough
4 }
5
6 fn main() { }