mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Added error for interface function with modifiers; test case
This commit is contained in:
@@ -303,7 +303,9 @@ bool SyntaxChecker::visit(FunctionDefinition const& _function)
|
||||
);
|
||||
}
|
||||
|
||||
if (!_function.isImplemented() && !_function.modifiers().empty())
|
||||
if (m_isInterface && !_function.modifiers().empty())
|
||||
m_errorReporter.syntaxError(_function.location(), "Functions in interfaces cannot have modifiers.");
|
||||
else if (!_function.isImplemented() && !_function.modifiers().empty())
|
||||
m_errorReporter.syntaxError(_function.location(), "Functions without implementation cannot have modifiers.");
|
||||
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user