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

12 lines
209 B
Solidity

contract C {
event E(string r);
function deposit() public {
emit E("HELLO WORLD");
}
}
// ====
// compileViaYul: also
// ----
// deposit() ->
// ~ emit E(string): 0x20, 0x0b, "HELLO WORLD"