solidity/test/libsolidity/syntaxTests/duplicateFunctions/illegal_names_exception.sol

13 lines
294 B
Solidity

// Exception for the rule about illegal names.
contract C {
function this() public {
}
function super() public {
}
function _() public {
}
}
// ----
// Warning 2319: (61-88): This declaration shadows a builtin symbol.
// Warning 2319: (90-118): This declaration shadows a builtin symbol.