mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Disallow conversion to super.
This commit is contained in:
@@ -2351,7 +2351,16 @@ bool TypeChecker::visit(FunctionCall const& _functionCall)
|
||||
funcCallAnno.kind = FunctionCallKind::StructConstructorCall;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (auto const* contractType = dynamic_cast<ContractType const*>(actualType))
|
||||
if (contractType->isSuper())
|
||||
m_errorReporter.fatalTypeError(
|
||||
1744_error,
|
||||
_functionCall.location(),
|
||||
"Cannot convert to the super type."
|
||||
);
|
||||
funcCallAnno.kind = FunctionCallKind::TypeConversion;
|
||||
}
|
||||
|
||||
funcCallAnno.isPure = argumentsArePure;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user