aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/trailing_dot2.sol
blob: 38a7ab2d6d74b8cf3eca5a6745f4e18b545b7727 (plain) (blame)
1
2
3
4
5
6
7
contract test {
    uint256 a = 2.2e10;
    uint256 b = .5E10;
    uint256 c = 2 + 2.;
}
// ----
// ParserError: (76-77): Expected identifier but got ';'