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

6 lines
125 B
Solidity

contract B {
modifier mod1(uint indexed a) { _; }
}
// ----
// ParserError 2314: (36-43): Expected ',' but got 'indexed'