aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/004_reference_to_later_declaration.sol
blob: e112e16c5afe7221ab6579b2620d16d3e64350aa (plain) (blame)
1
2
3
4
5
6
contract test {
    function g() public { f(); }
    function f() public {}
}
// ----
// Warning: (53-75): Function state mutability can be restricted to pure