]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/borrowck-uninit-field-access.stderr
Auto merge of #75912 - scottmcm:manuallydrop-vs-forget, r=Mark-Simulacrum
[rust.git] / src / test / ui / borrowck / borrowck-uninit-field-access.stderr
1 error[E0381]: use of possibly-uninitialized variable: `a`
2   --> $DIR/borrowck-uninit-field-access.rs:21:13
3    |
4 LL |     let _ = a.x + 1;
5    |             ^^^ use of possibly-uninitialized `a.x`
6
7 error[E0382]: use of moved value: `line1.origin`
8   --> $DIR/borrowck-uninit-field-access.rs:25:13
9    |
10 LL |     let _moved = line1.origin;
11    |                  ------------ value moved here
12 LL |     let _ = line1.origin.x + 1;
13    |             ^^^^^^^^^^^^^^ value used here after move
14    |
15    = note: move occurs because `line1.origin` has type `Point`, which does not implement the `Copy` trait
16
17 error[E0382]: use of partially moved value: `line2`
18   --> $DIR/borrowck-uninit-field-access.rs:29:5
19    |
20 LL |     let _moved = (line2.origin, line2.middle);
21    |                                 ------------ value partially moved here
22 LL |     line2.consume();
23    |     ^^^^^ value used here after partial move
24    |
25    = note: partial move occurs because `line2.middle` has type `Point`, which does not implement the `Copy` trait
26
27 error: aborting due to 3 previous errors
28
29 Some errors have detailed explanations: E0381, E0382.
30 For more information about an error, try `rustc --explain E0381`.