mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Make constant and payable mutually exclusive.
This commit is contained in:
@@ -424,6 +424,8 @@ bool TypeChecker::visit(FunctionDefinition const& _function)
|
||||
if (!_function.isConstructor() && !_function.name().empty() && !_function.isPartOfExternalInterface())
|
||||
typeError(_function.location(), "Internal functions cannot be payable.");
|
||||
}
|
||||
if (_function.isPayable() && _function.isDeclaredConst())
|
||||
typeError(_function.location(), "Functions cannot be constant and payable at the same time.");
|
||||
for (ASTPointer<VariableDeclaration> const& var: _function.parameters() + _function.returnParameters())
|
||||
{
|
||||
if (!type(*var)->canLiveOutsideStorage())
|
||||
|
||||
Reference in New Issue
Block a user