```
error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields
--> $DIR/attempted-access-non-fatal.rs:7:15
|
LL | let _ = 2.l;
| ^
|
help: if intended to be a floating point literal, consider adding a `0` after the period and a `f64` suffix
|
LL - let _ = 2.l;
LL + let _ = 2.0f64;
|
```
28 lines
800 B
Plaintext
28 lines
800 B
Plaintext
error: unexpected parentheses surrounding `for` loop head
|
|
--> $DIR/recover-for-loop-parens-around-head.rs:11:9
|
|
|
|
|
LL | for ( _elem in vec ) {
|
|
| ^ ^
|
|
|
|
|
help: remove parentheses in `for` loop
|
|
|
|
|
LL - for ( _elem in vec ) {
|
|
LL + for _elem in vec {
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/recover-for-loop-parens-around-head.rs:13:40
|
|
|
|
|
LL | const _RECOVERY_WITNESS: u32 = 0u8;
|
|
| ^^^ expected `u32`, found `u8`
|
|
|
|
|
help: change the type of the numeric literal from `u8` to `u32`
|
|
|
|
|
LL - const _RECOVERY_WITNESS: u32 = 0u8;
|
|
LL + const _RECOVERY_WITNESS: u32 = 0u32;
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|