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

12 lines
209 B
Solidity
Raw Normal View History

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