aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/invalid_fixed_conversion_leading_zeroes_check.sol
blob: 352b5f8fedaa2e7704cf54dd80094908f195f39f (plain) (tree)
1
2
3
4
5
6
7





                                
                                                                            
contract test {
    function f() {
        fixed a = 1.0x2;
    }
}
// ----
// ParserError: (44-47): Identifier-start is not allowed at end of a number.