mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
1a4cc4e64d
- Without this fix, nested arrays are not detected as unsupported and compiler fails on an UnimplementedError. - Now it's consistent with how structs are handled in ABIEncoderV1.
8 lines
181 B
Solidity
8 lines
181 B
Solidity
contract C {
|
|
function f() public pure {
|
|
abi.encodePacked([new uint[](5), new uint[](7)]);
|
|
}
|
|
}
|
|
// ----
|
|
// TypeError 9578: (69-99): Type not supported in packed mode.
|