2019-09-01 12:09:59 -05:00
|
|
|
error[E0381]: assign to part of possibly-uninitialized variable: `t`
|
2019-08-02 19:08:16 -05:00
|
|
|
--> $DIR/partial-initialization-across-yield.rs:12:9
|
|
|
|
|
|
|
|
|
LL | t.0 = 42;
|
2019-09-01 12:09:59 -05:00
|
|
|
| ^^^^^^^^ use of possibly-uninitialized `t`
|
2019-08-02 19:08:16 -05:00
|
|
|
|
2019-09-01 12:09:59 -05:00
|
|
|
error[E0381]: assign to part of possibly-uninitialized variable: `t`
|
2019-08-02 19:08:16 -05:00
|
|
|
--> $DIR/partial-initialization-across-yield.rs:23:9
|
|
|
|
|
|
|
|
|
LL | t.0 = 42;
|
2019-09-01 12:09:59 -05:00
|
|
|
| ^^^^^^^^ use of possibly-uninitialized `t`
|
2019-08-02 19:08:16 -05:00
|
|
|
|
2019-09-01 12:09:59 -05:00
|
|
|
error[E0381]: assign to part of possibly-uninitialized variable: `t`
|
2019-08-02 19:08:16 -05:00
|
|
|
--> $DIR/partial-initialization-across-yield.rs:34:9
|
|
|
|
|
|
|
|
|
LL | t.x = 42;
|
2019-09-01 12:09:59 -05:00
|
|
|
| ^^^^^^^^ use of possibly-uninitialized `t`
|
2019-08-02 19:08:16 -05:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0381`.
|