solidity/test/libsolidity/syntaxTests/specialFunctions/abi_encodePacked_nested_dynamic_array.sol
2022-04-01 23:41:18 -05:00

9 lines
235 B
Solidity

pragma abicoder v1;
contract C {
function f() public pure {
abi.encodePacked([new uint[](5), new uint[](7)]);
}
}
// ----
// TypeError 9578: (89-119='[new uint[](5), new uint[](7)]'): Type not supported in packed mode.