solidity/test/libsolidity/syntaxTests/specialFunctions/encodePacked_array_of_structs.sol
2018-08-09 21:16:51 +02:00

10 lines
190 B
Solidity

contract C {
struct S { uint x; }
function f() public pure {
S[] memory s;
abi.encodePacked(s);
}
}
// ----
// TypeError: (116-117): This type cannot be encoded.