```
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
623 B
Plaintext
21 lines
623 B
Plaintext
error: unknown start of token: `
|
|
--> $DIR/issue-110014.rs:1:3
|
|
|
|
|
LL | fn`2222222222222222222222222222222222222222() {}
|
|
| ^
|
|
|
|
|
help: Unicode character '`' (Grave Accent) looks like ''' (Single Quote), but it is not
|
|
|
|
|
LL - fn`2222222222222222222222222222222222222222() {}
|
|
LL + fn'2222222222222222222222222222222222222222() {}
|
|
|
|
|
|
|
error: expected identifier, found `2222222222222222222222222222222222222222`
|
|
--> $DIR/issue-110014.rs:1:4
|
|
|
|
|
LL | fn`2222222222222222222222222222222222222222() {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected identifier
|
|
|
|
error: aborting due to 2 previous errors
|
|
|