]> git.proxmox.com Git - rustc.git/blob
402f5e4f33e6f30bbf29239d4fcade7aceac5d5b
[rustc.git] /
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
3 |
4 LL | #![feature(capture_disjoint_fields)]
5 | ^^^^^^^^^^^^^^^^^^^^^^^
6 |
7 = note: `#[warn(incomplete_features)]` on by default
8 = note: see issue #53488 <https://github.com/rust-lang/rust/issues/53488> for more information
9
10 error[E0382]: use of moved value: `c`
11 --> $DIR/closure-origin-single-variant-diagnostics.rs:21:13
12 |
13 LL | let b = c;
14 | - value moved here
15 LL | let a = c;
16 | ^ value used here after move
17 |
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
20 |
21 LL | let SingleVariant::Point(ref mut x, _) = point;
22 | ^^^^^
23
24 error: aborting due to previous error; 1 warning emitted
25
26 For more information about this error, try `rustc --explain E0382`.