Sign in
◑
Theme
rust
/
rust
/
95cc3dfd9223893de67e5f32e892863dff11005d
/
.
/
tests
/
ui
/
parser
/
no-binary-float-literal.rs
blob: e07ff6518eeedd31ce132318cfc648558f2636ef [
file
]
fn
main
()
{
0b101010f64
;
//~^ ERROR binary float literal is not supported
0b101.010
;
//~^ ERROR binary float literal is not supported
0b101p4f64
;
//~^ ERROR invalid suffix `p4f64` for number literal
}