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