rust/src/test/ui/borrowck/assign_mutable_fields.nll.stderr

16 lines
479 B
Plaintext
Raw Normal View History

2018-10-16 10:08:59 -05:00
error[E0381]: assign to part of possibly uninitialized variable: `x`
2018-12-25 09:56:47 -06:00
--> $DIR/assign_mutable_fields.rs:9:5
|
2018-10-16 10:08:59 -05:00
LL | x.0 = 1;
| ^^^^^^^ use of possibly uninitialized `x`
2018-10-16 10:08:59 -05:00
error[E0381]: assign to part of possibly uninitialized variable: `x`
2018-12-25 09:56:47 -06:00
--> $DIR/assign_mutable_fields.rs:17:5
2018-10-16 10:08:59 -05:00
|
LL | x.0 = 1;
| ^^^^^^^ use of possibly uninitialized `x`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0381`.