2018-10-20 15:36:17 -05:00
|
|
|
error: octal float literal is not supported
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/lex-bad-numeric-literals.rs:4:5
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | 0o1.0;
|
2018-10-20 15:36:17 -05:00
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
error: octal float literal is not supported
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/lex-bad-numeric-literals.rs:6:5
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | 0o3.0f32;
|
2018-10-20 15:36:17 -05:00
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
error: octal float literal is not supported
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/lex-bad-numeric-literals.rs:7:5
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | 0o4e4;
|
2018-10-20 15:36:17 -05:00
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
error: octal float literal is not supported
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/lex-bad-numeric-literals.rs:8:5
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | 0o5.0e5;
|
2018-10-20 15:36:17 -05:00
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: octal float literal is not supported
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/lex-bad-numeric-literals.rs:9:5
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | 0o6e6f32;
|
2018-10-20 15:36:17 -05:00
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
error: octal float literal is not supported
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/lex-bad-numeric-literals.rs:10:5
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | 0o7.0e7f64;
|
2018-10-20 15:36:17 -05:00
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: hexadecimal float literal is not supported
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/lex-bad-numeric-literals.rs:11:5
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | 0x8.0e+9;
|
2018-10-20 15:36:17 -05:00
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error: hexadecimal float literal is not supported
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/lex-bad-numeric-literals.rs:12:5
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | 0x9.0e-9;
|
2018-10-20 15:36:17 -05:00
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error: no valid digits found for number
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/lex-bad-numeric-literals.rs:13:5
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | 0o;
|
2018-10-20 15:36:17 -05:00
|
|
|
| ^^
|
|
|
|
|
|
|
|
error: expected at least one digit in exponent
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/lex-bad-numeric-literals.rs:14:8
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | 1e+;
|
2018-10-20 15:36:17 -05:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: hexadecimal float literal is not supported
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/lex-bad-numeric-literals.rs:15:5
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | 0x539.0;
|
2018-10-20 15:36:17 -05:00
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error: no valid digits found for number
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/lex-bad-numeric-literals.rs:18:5
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | 0x;
|
2018-10-20 15:36:17 -05:00
|
|
|
| ^^
|
|
|
|
|
|
|
|
error: no valid digits found for number
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/lex-bad-numeric-literals.rs:19:5
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | 0xu32;
|
2018-10-20 15:36:17 -05:00
|
|
|
| ^^
|
|
|
|
|
|
|
|
error: no valid digits found for number
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/lex-bad-numeric-literals.rs:20:5
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | 0ou32;
|
2018-10-20 15:36:17 -05:00
|
|
|
| ^^
|
|
|
|
|
|
|
|
error: no valid digits found for number
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/lex-bad-numeric-literals.rs:21:5
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | 0bu32;
|
2018-10-20 15:36:17 -05:00
|
|
|
| ^^
|
|
|
|
|
|
|
|
error: no valid digits found for number
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/lex-bad-numeric-literals.rs:22:5
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | 0b;
|
2018-10-20 15:36:17 -05:00
|
|
|
| ^^
|
|
|
|
|
|
|
|
error: octal float literal is not supported
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/lex-bad-numeric-literals.rs:24:5
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | 0o123.456;
|
2018-10-20 15:36:17 -05:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
error: binary float literal is not supported
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/lex-bad-numeric-literals.rs:26:5
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | 0b111.101;
|
2018-10-20 15:36:17 -05:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
error: octal float literal is not supported
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/lex-bad-numeric-literals.rs:5:5
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | 0o2f32;
|
2019-01-11 23:19:44 -06:00
|
|
|
| ^^^^^^ not supported
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
|
|
error: int literal is too large
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/lex-bad-numeric-literals.rs:16:5
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | 9900000000000000000000000000999999999999999999999999999999;
|
2018-10-20 15:36:17 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: int literal is too large
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/lex-bad-numeric-literals.rs:17:5
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | 9900000000000000000000000000999999999999999999999999999999;
|
2018-10-20 15:36:17 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: octal float literal is not supported
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/lex-bad-numeric-literals.rs:23:5
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | 0o123f64;
|
2019-01-11 23:19:44 -06:00
|
|
|
| ^^^^^^^^ not supported
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
|
|
error: binary float literal is not supported
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/lex-bad-numeric-literals.rs:25:5
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | 0b101f64;
|
2019-01-11 23:19:44 -06:00
|
|
|
| ^^^^^^^^ not supported
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
|
|
error: aborting due to 23 previous errors
|
|
|
|
|