aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/476_too_large_arrays_for_calldata_external.sol
blob: de8b7501826b653a970bbb60bac435bdb6e10f03 (plain) (blame)
1
2
3
4
5
6
contract C {
    function f(uint[85678901234] a) pure external {
    }
}
// ----
// TypeError: (28-47): Array is too large to be encoded.