mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
11 lines
246 B
Solidity
11 lines
246 B
Solidity
|
contract C {
|
||
|
event e(uint u, string s);
|
||
|
event e(string s, uint u);
|
||
|
|
||
|
function call() public {
|
||
|
emit e({u: 2, s: "abc"});
|
||
|
}
|
||
|
}
|
||
|
// ----
|
||
|
// TypeError 4487: (118-119): No unique declaration found after argument-dependent lookup.
|