]> git.proxmox.com Git - rustc.git/blob - tests/ui/lifetimes/lifetime-errors/ex3-both-anon-regions-one-is-struct-3.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / lifetimes / lifetime-errors / ex3-both-anon-regions-one-is-struct-3.rs
1 struct Ref<'a, 'b> { a: &'a u32, b: &'b u32 }
2
3 fn foo(mut y: Ref, x: &u32) {
4 y.b = x;
5 //~^ ERROR lifetime may not live long enough
6 }
7
8 fn main() { }