Allow library external functions to be bound with using for

This commit is contained in:
Matheus Aguiar
2023-02-02 13:39:19 -03:00
parent ddbef8f650
commit 2b70b08d5f
29 changed files with 316 additions and 15 deletions
@@ -0,0 +1,9 @@
library L {
function externalFunction(uint) external pure {}
function f() public pure {
uint x;
externalFunction(x);
}
}
// ----
// DeclarationError 7576: (120-136): Undeclared identifier. "externalFunction" is not (or not yet) visible at this point.