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

7 lines
333 B
Solidity
Raw Normal View History

2018-03-16 11:45:12 +00:00
contract A { modifier mod(uint a) { _; } }
contract B is A { modifier mod(uint8 a) { _; } }
// ----
2018-04-11 15:58:53 +00:00
// TypeError: (61-89): Override changes modifier signature.
// TypeError: (61-89): Overriding modifier is missing "override" specifier.
2019-12-06 09:07:56 +00:00
// TypeError: (13-40): Trying to override non-virtual modifier. Did you forget to add "virtual"?