rust/tests/ui/closures/2229_closure_analysis/diagnostics/closure-origin-struct-diagnostics.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
343 B
Rust
Raw Normal View History

2021-06-27 01:22:46 -05:00
// 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]
}