```
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;
|
```
21 lines
487 B
Plaintext
21 lines
487 B
Plaintext
error: unknown start of token: \u{2c2}
|
||
--> $DIR/issue-81800.rs:1:5
|
||
|
|
||
LL | fn x˂-
|
||
| ^
|
||
|
|
||
help: Unicode character '˂' (Modifier Letter Left Arrowhead) looks like '<' (Less-Than Sign), but it is not
|
||
|
|
||
LL - fn x˂-
|
||
LL + fn x<-
|
||
|
|
||
|
||
error: expected one of `#`, `>`, `const`, identifier, or lifetime, found `-`
|
||
--> $DIR/issue-81800.rs:1:6
|
||
|
|
||
LL | fn x˂-
|
||
| ^ expected one of `#`, `>`, `const`, identifier, or lifetime
|
||
|
||
error: aborting due to 2 previous errors
|
||
|