solidity/test/libsolidity/syntaxTests/modifiers/illegal_name.sol
2022-04-01 23:41:18 -05:00

12 lines
529 B
Solidity

contract C {
modifier this { _; }
modifier super { _; }
modifier _ { _; }
}
// ----
// DeclarationError 3726: (14-34='modifier this { _; }'): The name "this" is reserved.
// DeclarationError 3726: (36-57='modifier super { _; }'): The name "super" is reserved.
// DeclarationError 3726: (59-76='modifier _ { _; }'): The name "_" is reserved.
// Warning 2319: (14-34='modifier this { _; }'): This declaration shadows a builtin symbol.
// Warning 2319: (36-57='modifier super { _; }'): This declaration shadows a builtin symbol.