2020-12-03 17:29:17 +00:00
|
|
|
pragma abicoder v1;
|
2020-09-17 13:02:29 +00:00
|
|
|
contract C {
|
|
|
|
function f() public pure {
|
|
|
|
abi.encodePacked([new uint[](5), new uint[](7)]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
2020-12-03 17:29:17 +00:00
|
|
|
// TypeError 9578: (89-119): Type not supported in packed mode.
|