rust/tests/ui/closures/2229_closure_analysis/diagnostics/simple-struct-min-capture.rs

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

26 lines
496 B
Rust
Raw Normal View History

2021-06-27 01:22:46 -05:00
// edition:2021
2020-11-25 14:15:55 -06:00
// Test that borrow checker error is accurate and that min capture pass of the
// closure analysis is working as expected.
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
fn main() {
let mut p = Point { x: 10, y: 20 };
// `p` is captured via mutable borrow.
let mut c = || {
p.x += 10;
println!("{:?}", p);
};
println!("{:?}", p);
//~^ ERROR: cannot borrow `p` as immutable because it is also borrowed as mutable
c();
}