aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/145_external_base_visibility.sol
blob: 2d1baa20e65c47dec51cc255482d7a66036fe129 (plain) (blame)
1
2
3
4
5
6
7
8
contract base {
    function f() external {}
}
contract derived is base {
    function g() public { base.f(); }
}
// ----
// TypeError: (100-106): Member "f" not found or not visible after argument-dependent lookup in type(contract base)