mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
12 lines
207 B
Solidity
12 lines
207 B
Solidity
event E();
|
|
event E(uint);
|
|
event E(uint, string indexed, bytes, bool);
|
|
event E(int, int, int) anonymous;
|
|
|
|
function f() {
|
|
emit E();
|
|
emit E(1);
|
|
emit E(1, "abc", "abc", true);
|
|
emit E(1, 2, 3);
|
|
}
|