1 warning: the feature `capture_disjoint_fields` is incomplete and may not be safe to use and/or cause compiler crashes
2 --> $DIR/closure-origin-single-variant-diagnostics.rs:1:12
4 LL | #![feature(capture_disjoint_fields)]
5 | ^^^^^^^^^^^^^^^^^^^^^^^
7 = note: `#[warn(incomplete_features)]` on by default
8 = note: see issue #53488 <https://github.com/rust-lang/rust/issues/53488> for more information
10 error[E0382]: use of moved value: `c`
11 --> $DIR/closure-origin-single-variant-diagnostics.rs:21:13
16 | ^ value used here after move
18 note: closure cannot be moved more than once as it is not `Copy` due to moving the variable `point.0` out of its environment
19 --> $DIR/closure-origin-single-variant-diagnostics.rs:16:50
21 LL | let SingleVariant::Point(ref mut x, _) = point;
24 error: aborting due to previous error; 1 warning emitted
26 For more information about this error, try `rustc --explain E0382`.