Parse override keyword for modifier definitions

This commit is contained in:
Mathias Baumann
2019-10-30 17:31:33 +01:00
parent f4c40080c4
commit b76106fc4a
4 changed files with 20 additions and 7 deletions
@@ -1,2 +1,2 @@
contract A { modifier mod(uint a) { _; } }
contract B is A { modifier mod(uint a) { _; } }
contract B is A { modifier mod(uint a) override { _; } }