2019-12-06 09:07:56 +00:00
|
|
|
contract A { modifier mod(uint a) { _; } }
|
|
|
|
contract B is A { modifier mod(uint a) override { _; } }
|
|
|
|
// ----
|
2020-06-19 00:26:46 +00:00
|
|
|
// TypeError 4334: (13-40): Trying to override non-virtual modifier. Did you forget to add "virtual"?
|