mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
10 lines
304 B
Solidity
10 lines
304 B
Solidity
// Exception for the illegal name list. External interface events
|
|
contract C {
|
|
event this();
|
|
event super();
|
|
event _();
|
|
}
|
|
// ----
|
|
// Warning 2319: (80-93='event this();'): This declaration shadows a builtin symbol.
|
|
// Warning 2319: (95-109='event super();'): This declaration shadows a builtin symbol.
|