rust/src/test/ui/borrowck/borrowck-partial-reinit-4.stderr

10 lines
305 B
Plaintext
Raw Normal View History

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);
| ^^^^^^^ use of possibly-uninitialized `x.0`
2018-08-08 14:28:26 +02:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0381`.