]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/borrowck-use-in-index-lvalue.stderr
Sync portable-simd to rust-lang/portable-simd@72df4c45056a8bc0d1b3f06fdc828722177f0763
[rust.git] / src / test / ui / borrowck / borrowck-use-in-index-lvalue.stderr
1 error[E0381]: use of possibly-uninitialized variable: `w`
2   --> $DIR/borrowck-use-in-index-lvalue.rs:3:5
3    |
4 LL |     w[5] = 0;
5    |     ^^^^ use of possibly-uninitialized `*w`
6
7 error[E0381]: use of possibly-uninitialized variable: `w`
8   --> $DIR/borrowck-use-in-index-lvalue.rs:6:5
9    |
10 LL |     w[5] = 0;
11    |     ^^^^ use of possibly-uninitialized `*w`
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0381`.