aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/placeholder_in_function_context.sol
blob: e331440d3c8f1e901d6839ab6471f151baef5e7c (plain) (blame)
1
2
3
4
5
6
7
8
9
contract c {
    function fun() returns (uint r) {
        uint _ = 8;
        return _ + 1;
    }
}
// ----
// Warning: (17-98): No visibility specified. Defaulting to "public". 
// Warning: (17-98): Function state mutability can be restricted to pure