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