```
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;
|
```
27 lines
844 B
Plaintext
27 lines
844 B
Plaintext
error: expected one of `...`, `..=`, `..`, `=>`, `if`, or `|`, found `>=`
|
|
--> $DIR/recover-ge-as-fat-arrow.rs:4:11
|
|
|
|
|
LL | 1 >= {}
|
|
| ^^
|
|
| |
|
|
| expected one of `...`, `..=`, `..`, `=>`, `if`, or `|`
|
|
| help: use a fat arrow to start a match arm: `=>`
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/recover-ge-as-fat-arrow.rs:5:29
|
|
|
|
|
LL | _ => { let _: u16 = 2u8; }
|
|
| --- ^^^ expected `u16`, found `u8`
|
|
| |
|
|
| expected due to this
|
|
|
|
|
help: change the type of the numeric literal from `u8` to `u16`
|
|
|
|
|
LL - _ => { let _: u16 = 2u8; }
|
|
LL + _ => { let _: u16 = 2u16; }
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|