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