blob: 8d55260c7c45988f116adcef560c4e904f8e5369 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//@ edition:2021
// Check that precise paths are being reported back in the error message.
struct Y {
y: X
}
struct X {
a: u32,
b: u32,
}
fn main() {
let mut x = Y { y: X { a: 5, b: 0 } };
let hello = || {
x.y.a += 1;
};
let b = hello;
let c = hello; //~ ERROR use of moved value: `hello` [E0382]
}
|