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