summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/issue-90728.stderr
blob: b55c460306688601c6cf2446d89ef0dcd4707948 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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