Disallow usage of the indexed attribute for modifier parameters Added tests for edge cases of several keywords

This commit is contained in:
vlad
2023-01-20 19:53:02 +01:00
committed by Kamil Śliwak
parent 6a0ea174b8
commit 7fbd36855d
3 changed files with 6 additions and 1 deletions
@@ -0,0 +1,5 @@
contract B {
modifier mod1(uint indexed a) { _; }
}
// ----
// ParserError 2314: (36-43): Expected ',' but got 'indexed'