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

10 lines
205 B
Solidity

contract C {
struct S { uint x; }
function f() public pure {
S[] memory s;
abi.encodePacked(s);
}
}
// ----
// TypeError 9578: (116-117='s'): Type not supported in packed mode.