aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/145_external_base_visibility.sol
blob: cf68046263bcac806f9043824796cb38176d3ab2 (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).