rust/src/test/ui/span/method-and-field-eager-resolution.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
886 B
Plaintext
Raw Normal View History

error[E0282]: type annotations needed
2022-02-14 12:25:26 +00:00
--> $DIR/method-and-field-eager-resolution.rs:4:9
|
LL | let mut x = Default::default();
2022-02-14 12:25:26 +00:00
| ^^^^^
LL |
LL | x.0;
| - type must be known at this point
|
2022-12-11 02:40:04 +00:00
help: consider giving `x` an explicit type, where the placeholder `Type` is specified
2022-02-14 12:25:26 +00:00
|
2022-12-11 02:40:04 +00:00
LL | let mut x: Type = Default::default();
| ++++++
error[E0282]: type annotations needed
2022-02-14 12:25:26 +00:00
--> $DIR/method-and-field-eager-resolution.rs:11:9
|
LL | let mut x = Default::default();
2022-02-14 12:25:26 +00:00
| ^^^^^
LL |
LL | x[0];
| - type must be known at this point
|
2022-12-11 02:40:04 +00:00
help: consider giving `x` an explicit type, where the placeholder `Type` is specified
2022-02-14 12:25:26 +00:00
|
2022-12-11 02:40:04 +00:00
LL | let mut x: Type = Default::default();
| ++++++
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0282`.