mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
21 lines
456 B
Plaintext
21 lines
456 B
Plaintext
error: expected at least one digit in exponent
|
|
--> $DIR/issue-90728.rs:2:7
|
|
|
|
|
LL | a.5.2E+
|
|
| ^^^^^
|
|
|
|
error: unexpected token: `5.2E+`
|
|
--> $DIR/issue-90728.rs:2:7
|
|
|
|
|
LL | a.5.2E+
|
|
| ^^^^^
|
|
|
|
error: expected one of `.`, `;`, `?`, `}`, or an operator, found `5.2E+`
|
|
--> $DIR/issue-90728.rs:2:7
|
|
|
|
|
LL | a.5.2E+
|
|
| ^^^^^ expected one of `.`, `;`, `?`, `}`, or an operator
|
|
|
|
error: aborting due to 3 previous errors
|
|
|