aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/532_tuple_invalid_literal_too_large_for_uint_multi.sol
blob: a26f9c041fff962f5190256552712a385c05aca8 (plain) (blame)
1
2
3
4
5
6
7
8
contract C {
    function f() pure public {
        uint x;
        (x, ) = (1E111, 1);
    }
}
// ----
// TypeError: (77-82): Invalid rational number.