about summary refs log tree commit diff
path: root/src/test/ui/parser/no-binary-float-literal.rs
blob: c3ed2ac2dcf347391f19826a12a29bcdbe534fbe (plain)
1
2
3
4
5
6
7
8
9
// compile-flags: -Z parse-only

// error-pattern:binary float literal is not supported

fn main() {
    0b101010f64;
    0b101.010;
    0b101p4f64;
}