mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
11 lines
210 B
Solidity
11 lines
210 B
Solidity
contract A {
|
|
event X(uint, uint indexed);
|
|
}
|
|
contract B {
|
|
event X(uint, uint);
|
|
}
|
|
contract C is A, B {
|
|
}
|
|
// ----
|
|
// DeclarationError 5883: (65-85): Event with same name and parameter types defined twice.
|