solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/476_too_large_arrays_for_calldata_external.sol

7 lines
147 B
Solidity

contract C {
function f(uint[85678901234] calldata a) pure external {
}
}
// ----
// TypeError 1534: (28-56): Type too large for calldata.