solidity/test/libsolidity/syntaxTests/array/length/parameter_too_large_multidim.sol
2020-04-16 16:42:12 +02:00

10 lines
353 B
Solidity

contract C {
function f(bytes32[1263941234127518272][500] memory) public pure {}
function f(uint[2**30][] memory) public pure {}
function f(uint[2**30][2**30][] memory) public pure {}
}
// ----
// TypeError: (26-66): Type too large for memory.
// TypeError: (96-116): Type too large for memory.
// TypeError: (146-173): Type too large for memory.