mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix accessing libraries inside modules.
This commit is contained in:
parent
2a62814686
commit
a65415cdad
@ -1985,6 +1985,11 @@ void IRGeneratorForStatements::endVisit(MemberAccess const& _memberAccess)
|
|||||||
if (!_memberAccess.annotation().calledDirectly)
|
if (!_memberAccess.annotation().calledDirectly)
|
||||||
m_context.addToInternalDispatch(*function);
|
m_context.addToInternalDispatch(*function);
|
||||||
}
|
}
|
||||||
|
else if (auto const* contract = dynamic_cast<ContractDefinition const*>(_memberAccess.annotation().referencedDeclaration))
|
||||||
|
{
|
||||||
|
if (contract->isLibrary())
|
||||||
|
define(IRVariable(_memberAccess).part("address")) << linkerSymbol(*contract) << "\n";
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
@ -39,6 +39,7 @@ contract C {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// ====
|
// ====
|
||||||
|
// compileViaYul: also
|
||||||
// EVMVersion: >=byzantium
|
// EVMVersion: >=byzantium
|
||||||
// ----
|
// ----
|
||||||
// library: L
|
// library: L
|
||||||
|
Loading…
Reference in New Issue
Block a user