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

14 lines
321 B
Solidity

contract C {
struct S { uint x; }
S s;
struct T { uint y; }
T t;
function f() public view {
bytes32 a = sha256(abi.encodePacked(s, t));
a;
}
}
// ----
// TypeError 9578: (156-157): Type not supported in packed mode.
// TypeError 9578: (159-160): Type not supported in packed mode.