aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/137_external_visibility.sol
blob: 214ad60ace4e609a5051a32338d8bcabd37511bc (plain) (tree)
1
2
3
4
5
6




                                
                                                                                                   
contract c {
    function f() external {}
    function g() public { f(); }
}
// ----
// DeclarationError: (68-69): Undeclared identifier. "f" is not (or not yet) visible at this point.