solidity/test/libsolidity/semanticTests/events/event_struct_memory_v2.sol
2021-05-27 23:21:55 -05:00

14 lines
245 B
Solidity

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