summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/no-hex-float-literal.rs
blob: bf11dee08338e91184dbdc198b44c48c11417dc5 (plain)
1
2
3
4
5
6
7
8
9
fn main() {
    0xABC.Df;
    //~^ ERROR `{integer}` is a primitive type and therefore doesn't have fields
    0x567.89;
    //~^ ERROR hexadecimal float literal is not supported
    0xDEAD.BEEFp-2f;
    //~^ ERROR invalid suffix `f` for float literal
    //~| ERROR `{integer}` is a primitive type and therefore doesn't have fields
}