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

16 lines
346 B
Solidity
Raw Normal View History

pragma experimental ABIEncoderV2;
contract C {
struct S { uint x; }
S s;
struct T { uint y; }
T t;
function f() public view {
2018-05-23 13:39:26 +00:00
bytes32 a = sha256(abi.encodePacked(s, t));
a;
}
}
// ----
// TypeError: (191-192): Type not supported in packed mode.
// TypeError: (194-195): Type not supported in packed mode.