solidity/test/libsolidity/syntaxTests/modifiers/modifier_overrides_function.sol

6 lines
224 B
Solidity
Raw Normal View History

2018-03-16 11:45:12 +00:00
contract A { modifier mod(uint a) { _; } }
contract B is A { function mod(uint a) public { } }
// ----
2018-04-11 15:58:53 +00:00
// DeclarationError: (61-92): Identifier already declared.
// TypeError: (13-40): Override changes modifier to function.