aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/096_access_to_default_function_visibility.sol
blob: 9251df7366c4886280e8ef2531a4842d8e86e0a0 (plain) (blame)
1
2
3
4
5
6
7
8
contract c {
    function f() public {}
}
contract d {
    function g() public { c(0).f(); }
}
// ----
// Warning: (17-39): Function state mutability can be restricted to pure