2018-05-13 10:52:50 -05:00
|
|
|
error[E0282]: type annotations needed
|
2022-02-14 06:25:26 -06:00
|
|
|
--> $DIR/method-and-field-eager-resolution.rs:4:9
|
2018-05-13 10:52:50 -05:00
|
|
|
|
|
|
|
|
LL | let mut x = Default::default();
|
2022-02-14 06:25:26 -06:00
|
|
|
| ^^^^^
|
2022-06-25 11:18:25 -05:00
|
|
|
LL |
|
|
|
|
LL | x.0;
|
|
|
|
| - type must be known at this point
|
2018-05-13 10:52:50 -05:00
|
|
|
|
|
2022-12-13 13:36:43 -06:00
|
|
|
help: consider giving `x` an explicit type
|
2022-02-14 06:25:26 -06:00
|
|
|
|
|
2022-12-13 13:36:43 -06:00
|
|
|
LL | let mut x: /* Type */ = Default::default();
|
|
|
|
| ++++++++++++
|
2018-05-13 10:52:50 -05:00
|
|
|
|
|
|
|
error[E0282]: type annotations needed
|
2022-02-14 06:25:26 -06:00
|
|
|
--> $DIR/method-and-field-eager-resolution.rs:11:9
|
2018-05-13 10:52:50 -05:00
|
|
|
|
|
|
|
|
LL | let mut x = Default::default();
|
2022-02-14 06:25:26 -06:00
|
|
|
| ^^^^^
|
2022-06-25 11:18:25 -05:00
|
|
|
LL |
|
|
|
|
LL | x[0];
|
|
|
|
| - type must be known at this point
|
2018-05-13 10:52:50 -05:00
|
|
|
|
|
2022-12-13 13:36:43 -06:00
|
|
|
help: consider giving `x` an explicit type
|
2022-02-14 06:25:26 -06:00
|
|
|
|
|
2022-12-13 13:36:43 -06:00
|
|
|
LL | let mut x: /* Type */ = Default::default();
|
|
|
|
| ++++++++++++
|
2018-05-13 10:52:50 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0282`.
|