blob: e4df870bc00311a398b3adc5d4a81a35abb1f2a9 (
plain)
1
2
3
4
5
6
7
8
9
|
struct Ref<'a, 'b> { a: &'a u32, b: &'b u32 }
fn foo(mut x: Ref, y: &u32) {
y = x.b;
//~^ ERROR lifetime may not live long enough
//~| ERROR cannot assign to immutable argument
}
fn main() { }
|