@@ -65,43 +65,43 @@ LL | 0x539.0;
65
65
| ^^^^^^^
66
66
67
67
error: no valid digits found for number
68
- --> $DIR/lex-bad-numeric-literals.rs:18 :5
68
+ --> $DIR/lex-bad-numeric-literals.rs:20 :5
69
69
|
70
70
LL | 0x;
71
71
| ^^
72
72
73
73
error: no valid digits found for number
74
- --> $DIR/lex-bad-numeric-literals.rs:19 :5
74
+ --> $DIR/lex-bad-numeric-literals.rs:21 :5
75
75
|
76
76
LL | 0xu32;
77
77
| ^^
78
78
79
79
error: no valid digits found for number
80
- --> $DIR/lex-bad-numeric-literals.rs:20 :5
80
+ --> $DIR/lex-bad-numeric-literals.rs:22 :5
81
81
|
82
82
LL | 0ou32;
83
83
| ^^
84
84
85
85
error: no valid digits found for number
86
- --> $DIR/lex-bad-numeric-literals.rs:21 :5
86
+ --> $DIR/lex-bad-numeric-literals.rs:23 :5
87
87
|
88
88
LL | 0bu32;
89
89
| ^^
90
90
91
91
error: no valid digits found for number
92
- --> $DIR/lex-bad-numeric-literals.rs:22 :5
92
+ --> $DIR/lex-bad-numeric-literals.rs:24 :5
93
93
|
94
94
LL | 0b;
95
95
| ^^
96
96
97
97
error: octal float literal is not supported
98
- --> $DIR/lex-bad-numeric-literals.rs:24 :5
98
+ --> $DIR/lex-bad-numeric-literals.rs:26 :5
99
99
|
100
100
LL | 0o123.456;
101
101
| ^^^^^^^^^
102
102
103
103
error: binary float literal is not supported
104
- --> $DIR/lex-bad-numeric-literals.rs:26 :5
104
+ --> $DIR/lex-bad-numeric-literals.rs:28 :5
105
105
|
106
106
LL | 0b111.101;
107
107
| ^^^^^^^^^
@@ -119,19 +119,19 @@ LL | 9900000000000000000000000000999999999999999999999999999999;
119
119
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
120
120
121
121
error: integer literal is too large
122
- --> $DIR/lex-bad-numeric-literals.rs:17 :5
122
+ --> $DIR/lex-bad-numeric-literals.rs:18 :5
123
123
|
124
124
LL | 9900000000000000000000000000999999999999999999999999999999;
125
125
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
126
126
127
127
error: octal float literal is not supported
128
- --> $DIR/lex-bad-numeric-literals.rs:23 :5
128
+ --> $DIR/lex-bad-numeric-literals.rs:25 :5
129
129
|
130
130
LL | 0o123f64;
131
131
| ^^^^^^^^ not supported
132
132
133
133
error: binary float literal is not supported
134
- --> $DIR/lex-bad-numeric-literals.rs:25 :5
134
+ --> $DIR/lex-bad-numeric-literals.rs:27 :5
135
135
|
136
136
LL | 0b101f64;
137
137
| ^^^^^^^^ not supported
0 commit comments