solidity/test/libsolidity/semanticTests/intheritance/inherited_function_from_a_library.sol
2020-04-24 15:00:51 +02:00

22 lines
296 B
Solidity

library A {
function f() internal returns (uint256) {
return 1;
}
}
contract B {
function f() internal returns (uint256) {
return 2;
}
function g() public returns (uint256) {
return A.f();
}
}
// ====
// compileViaYul: also
// ----
// g() -> 1