solidity/test/libsolidity/semanticTests/multiSource/free_function_resolution_base_contract.sol
2023-05-11 10:56:55 -05:00

17 lines
303 B
Solidity

==== Source: s1.sol ====
function f() pure returns (uint) { return 1337; }
contract C {
function g() public pure returns (uint) {
return f();
}
}
==== Source: s2.sol ====
import "s1.sol";
contract D is C {
function h() public pure returns (uint) {
return g();
}
}
// ----
// h() -> 1337