aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/107_empty_name_input_parameter_with_named_one.sol
blob: e0efa0a08172eaf4c495ba7d1015e4503082521b (plain) (tree)
1
2
3
4
5
6
7






                                                                        
contract test {
    function f(uint, uint k) public returns (uint ret_k) {
        return k;
    }
}
// ----
// Warning: (20-98): Function state mutability can be restricted to pure