solidity/test/libsolidity/syntaxTests/events/event_emit_complex.sol
2021-04-20 17:38:29 +02:00

9 lines
146 B
Solidity

contract C {
event e(uint a, string b);
function f() public {
emit e(2, "abc");
emit e({b: "abc", a: 8});
}
}
// ----