2020-12-03 17:29:17 +00:00
|
|
|
pragma abicoder v1;
|
2020-09-17 13:02:29 +00:00
|
|
|
contract C {
|
|
|
|
function test() public pure {
|
|
|
|
abi.encode([new uint[](5), new uint[](7)]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
2020-12-03 17:29:17 +00:00
|
|
|
// TypeError 2056: (86-116): This type cannot be encoded.
|