aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/bound/bound_no_call.sol
blob: dcb3c3c59a78cde4f25b58d28ffe87bc5c8fbf63 (plain) (blame)
1
2
3
4
5
6
7
library D { function double(uint self) public pure returns (uint) { return 2*self; } }
contract C {
    using D for uint;
    function f(uint a) public pure {
        a.double;
    }
}