solidity/test/libsolidity/syntaxTests/types/contractTypeType/members/function_via_contract_name_internal.sol

12 lines
232 B
Solidity

contract A {
function f() internal {}
}
contract B {
function g() external {
A.f;
}
}
// ----
// TypeError 9582: (94-97): Member "f" not found or not visible after argument-dependent lookup in type(contract A).