]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/no-binary-float-literal.stderr
:arrow_up: rust-analyzer
[rust.git] / src / test / ui / parser / no-binary-float-literal.stderr
1 error: binary float literal is not supported
2   --> $DIR/no-binary-float-literal.rs:4:5
3    |
4 LL |     0b101.010;
5    |     ^^^^^^^^^
6
7 error: binary float literal is not supported
8   --> $DIR/no-binary-float-literal.rs:2:5
9    |
10 LL |     0b101010f64;
11    |     ^^^^^^^^^^^ not supported
12
13 error: invalid suffix `p4f64` for number literal
14   --> $DIR/no-binary-float-literal.rs:6:5
15    |
16 LL |     0b101p4f64;
17    |     ^^^^^^^^^^ invalid suffix `p4f64`
18    |
19    = help: the suffix must be one of the numeric types (`u32`, `isize`, `f32`, etc.)
20
21 error: aborting due to 3 previous errors
22