]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/disallow-possibly-uninitialized.stderr
Rollup merge of #63285 - Mark-Simulacrum:rm-await-origin, r=Centril
[rust.git] / src / test / ui / borrowck / disallow-possibly-uninitialized.stderr
1 error[E0381]: assign to part of possibly uninitialized variable: `t`
2   --> $DIR/disallow-possibly-uninitialized.rs:6:5
3    |
4 LL |     t.0 = 1;
5    |     ^^^^^^^ use of possibly uninitialized `t`
6
7 error[E0381]: assign to part of possibly uninitialized variable: `t`
8   --> $DIR/disallow-possibly-uninitialized.rs:11:5
9    |
10 LL |     t.1 = 1;
11    |     ^^^^^^^ use of possibly uninitialized `t`
12
13 error[E0381]: assign to part of possibly uninitialized variable: `t`
14   --> $DIR/disallow-possibly-uninitialized.rs:16:5
15    |
16 LL |     t.0 = 1;
17    |     ^^^^^^^ use of possibly uninitialized `t`
18
19 error[E0381]: assign to part of possibly uninitialized variable: `t`
20   --> $DIR/disallow-possibly-uninitialized.rs:20:5
21    |
22 LL |     t.0 = 1;
23    |     ^^^^^^^ use of possibly uninitialized `t`
24
25 error: aborting due to 4 previous errors
26
27 For more information about this error, try `rustc --explain E0381`.