2013-02-06 01:49:24 -06:00
|
|
|
fn main() {
|
2013-09-26 01:26:09 -05:00
|
|
|
0b101010f64;
|
2019-01-11 23:19:44 -06:00
|
|
|
//~^ ERROR binary float literal is not supported
|
2013-02-06 01:49:24 -06:00
|
|
|
0b101.010;
|
2019-01-11 23:19:44 -06:00
|
|
|
//~^ ERROR binary float literal is not supported
|
2013-09-26 01:26:09 -05:00
|
|
|
0b101p4f64;
|
2019-05-18 14:44:09 -05:00
|
|
|
//~^ ERROR invalid suffix `p4f64` for integer literal
|
2013-02-06 01:49:24 -06:00
|
|
|
}
|