solidity/test/libsolidity/syntaxTests/specialFunctions/types_with_unspecified_encoding_types.sol

18 lines
500 B
Solidity
Raw Normal View History

contract C {
struct S { uint x; }
S s;
struct T { uint y; }
T t;
enum A { X, Y }
function f() public pure {
2018-05-23 13:39:26 +00:00
bytes memory a = abi.encodePacked(S, A, A.X, T, uint, uint[]);
a;
}
}
// ----
2018-05-23 13:39:26 +00:00
// TypeError: (174-175): This type cannot be encoded.
// TypeError: (177-178): This type cannot be encoded.
// TypeError: (185-186): This type cannot be encoded.
// TypeError: (188-192): This type cannot be encoded.
// TypeError: (194-200): This type cannot be encoded.