2018-10-20 23:36:17 +03:00
|
|
|
error: binary float literal is not supported
|
2019-01-11 21:19:44 -08:00
|
|
|
--> $DIR/no-binary-float-literal.rs:4:5
|
2018-10-20 23:36:17 +03:00
|
|
|
|
|
|
|
|
LL | 0b101.010;
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
2019-01-11 21:19:44 -08:00
|
|
|
error: binary float literal is not supported
|
|
|
|
--> $DIR/no-binary-float-literal.rs:2:5
|
|
|
|
|
|
|
|
|
LL | 0b101010f64;
|
|
|
|
| ^^^^^^^^^^^ not supported
|
|
|
|
|
2020-11-22 14:29:46 -08:00
|
|
|
error: invalid suffix `p4f64` for number literal
|
2019-01-11 21:19:44 -08:00
|
|
|
--> $DIR/no-binary-float-literal.rs:6:5
|
|
|
|
|
|
|
|
|
LL | 0b101p4f64;
|
2019-01-11 23:37:49 -08:00
|
|
|
| ^^^^^^^^^^ invalid suffix `p4f64`
|
2019-01-11 21:19:44 -08:00
|
|
|
|
|
2020-11-22 14:29:46 -08:00
|
|
|
= help: the suffix must be one of the numeric types (`u32`, `isize`, `f32`, etc.)
|
2019-01-11 21:19:44 -08:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2018-10-20 23:36:17 +03:00
|
|
|
|