mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Use declared instead of defined
This commit is contained in:
parent
f8da9a8fd5
commit
16a91ef90a
@ -469,7 +469,7 @@ bool TypeChecker::visit(FunctionDefinition const& _function)
|
||||
bool TypeChecker::visit(VariableDeclaration const& _variable)
|
||||
{
|
||||
if (m_scope->contractKind() == ContractDefinition::ContractKind::Interface)
|
||||
typeError(_variable.location(), "Variables cannot be defined in interfaces.");
|
||||
typeError(_variable.location(), "Variables cannot be declared in interfaces.");
|
||||
|
||||
// Variables can be declared without type (with "var"), in which case the first assignment
|
||||
// sets the type.
|
||||
|
@ -5408,7 +5408,7 @@ BOOST_AUTO_TEST_CASE(interface_variables)
|
||||
uint a;
|
||||
}
|
||||
)";
|
||||
CHECK_ERROR(text, TypeError, "Variables cannot be defined in interfaces");
|
||||
CHECK_ERROR(text, TypeError, "Variables cannot be declared in interfaces");
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_CASE(using_interface)
|
||||
|
Loading…
Reference in New Issue
Block a user