@@ -46,7 +46,7 @@ error: hexadecimal float literal is not supported
4646LL | 0x9.0e-9;
4747 | ^^^^^^^^
4848
49- error: no valid digits found for number
49+ error[E0768] : no valid digits found for number
5050 --> $DIR/lex-bad-numeric-literals.rs:11:5
5151 |
5252LL | 0o;
@@ -64,31 +64,31 @@ error: hexadecimal float literal is not supported
6464LL | 0x539.0;
6565 | ^^^^^^^
6666
67- error: no valid digits found for number
67+ error[E0768] : no valid digits found for number
6868 --> $DIR/lex-bad-numeric-literals.rs:18:5
6969 |
7070LL | 0x;
7171 | ^^
7272
73- error: no valid digits found for number
73+ error[E0768] : no valid digits found for number
7474 --> $DIR/lex-bad-numeric-literals.rs:19:5
7575 |
7676LL | 0xu32;
7777 | ^^
7878
79- error: no valid digits found for number
79+ error[E0768] : no valid digits found for number
8080 --> $DIR/lex-bad-numeric-literals.rs:20:5
8181 |
8282LL | 0ou32;
8383 | ^^
8484
85- error: no valid digits found for number
85+ error[E0768] : no valid digits found for number
8686 --> $DIR/lex-bad-numeric-literals.rs:21:5
8787 |
8888LL | 0bu32;
8989 | ^^
9090
91- error: no valid digits found for number
91+ error[E0768] : no valid digits found for number
9292 --> $DIR/lex-bad-numeric-literals.rs:22:5
9393 |
9494LL | 0b;
@@ -138,3 +138,4 @@ LL | 0b101f64;
138138
139139error: aborting due to 23 previous errors
140140
141+ For more information about this error, try `rustc --explain E0768`.
0 commit comments