]> git.proxmox.com Git - rustc.git/blob - src/test/ui/parser/no-binary-float-literal.stderr
New upstream version 1.37.0+dfsg1
[rustc.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 integer 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 integral types (`u32`, `isize`, etc)
20
21 error: aborting due to 3 previous errors
22