aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/bound/bound_all.sol
blob: 29f55b880b23be0da8ecbf8d08a1be5d35aa6c87 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
library L {
    function g(function() internal returns (uint) _t) internal returns (uint) { return _t(); }
}
contract C {
    using L for *;
    function f() public returns (uint) {
        return t.g();
    }
    function t() public pure returns (uint)  { return 7; }
}