solidity/test/libsolidity/semanticTests/events/event_string.sol
2022-05-19 20:23:28 +02:00

10 lines
178 B
Solidity

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