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