solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/476_too_large_arrays_for_calldata_external.sol
2020-04-16 16:42:12 +02:00

7 lines
142 B
Solidity

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