mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
138 B
Solidity
8 lines
138 B
Solidity
|
contract C {
|
||
|
event e(uint a, string b);
|
||
|
function f() public {
|
||
|
emit e(2, "abc");
|
||
|
emit e({b: "abc", a: 8});
|
||
|
}
|
||
|
}
|