]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/no-binary-float-literal.rs
Merge commit '63734fcdd718cca089f84c42f3a42c0096cfd431' into sync_cg_clif-2022-05-15
[rust.git] / src / test / ui / parser / no-binary-float-literal.rs
1 fn main() {
2     0b101010f64;
3     //~^ ERROR binary float literal is not supported
4     0b101.010;
5     //~^ ERROR binary float literal is not supported
6     0b101p4f64;
7     //~^ ERROR invalid suffix `p4f64` for number literal
8 }