aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/097_access_to_internal_function.sol
blob: e13e1531b934e4bee8957ed7c8cdc833e31e0d50 (plain) (blame)
1
2
3
4
5
6
7
8
contract c {
    function f() internal {}
}
contract d {
    function g() public { c(0).f(); }
}
// ----
// TypeError: (83-89): Member "f" not found or not visible after argument-dependent lookup in contract c