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

6 lines
234 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 { } }
// ----
// DeclarationError 9097: (61-92): Identifier already declared.
// TypeError 1469: (61-92): Override changes modifier to function.