aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/types/rational_number_exp_limit_fine.sol
blob: 66d02eb9a44a6ca0dbb89a43b8aac55e1fd9cdec (plain) (blame)
1
2
3
4
5
6
7
8
9
contract c {
    function f() public pure {
        int a;
        a = 0 ** 1E1233;
        a = 1 ** 1E1233;
        a = -1 ** 1E1233;
        a = 0E123456789;
    }
}