solidity/test/libsolidity/semanticTests/events/event_struct_storage_v2.sol

16 lines
268 B
Solidity
Raw Normal View History

pragma abicoder v2;
contract C {
struct S { uint a; }
event E(S);
S s;
function createEvent(uint x) public {
s.a = x;
emit E(s);
}
}
// ====
// compileViaYul: also
// ----
// createEvent(uint256): 42 ->
// ~ emit E((uint256)): 0x2a