aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/229_call_to_library_function.sol
blob: c007d9a1534f1c8b578398e5ddf921122b443ffa (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                   
library Lib {
    function min(uint, uint) public returns (uint);
}
contract Test {
    function f() public {
        uint t = Lib.min(12, 7);
    }
}
// ----
// Warning: (118-124): Unused local variable.