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

10 lines
178 B
Solidity
Raw Normal View History

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