]> git.lizzy.rs Git - rust.git/blob - src/test/ui/closures/2229_closure_analysis/diagnostics/closure-origin-tuple-diagnostics-1.stderr
use hir::Place instead of Symbol in closure_kind_origin
[rust.git] / src / test / ui / closures / 2229_closure_analysis / diagnostics / closure-origin-tuple-diagnostics-1.stderr
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-tuple-diagnostics-1.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: `hello`
11   --> $DIR/closure-origin-tuple-diagnostics-1.rs:15:13
12    |
13 LL |     let b = hello;
14    |             ----- value moved here
15 LL |     let c = hello;
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 `x.0` out of its environment
19   --> $DIR/closure-origin-tuple-diagnostics-1.rs:11:9
20    |
21 LL |         x.0 += 1;
22    |         ^^^
23
24 error: aborting due to previous error; 1 warning emitted
25
26 For more information about this error, try `rustc --explain E0382`.