2019-09-01 18:09:59 +01:00
|
|
|
error[E0381]: assign of possibly-uninitialized variable: `x.0`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/borrowck-partial-reinit-4.rs:17:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | (x.0).0 = Some(Test);
|
2019-09-01 18:09:59 +01:00
|
|
|
| ^^^^^^^ use of possibly-uninitialized `x.0`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2019-04-22 08:40:08 +01:00
|
|
|
For more information about this error, try `rustc --explain E0381`.
|