aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/scientific_notation.sol
blob: 5d6565082c26500c4d1fced13ba4965f906dfaed (plain) (blame)
1
2
3
4
5
6
7
contract test {
    uint256 a = 2e10;
    uint256 b = 2E10;
    uint256 c = 200e-2;
    uint256 d = 2E10 wei;
    uint256 e = 2.5e10;
}