aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/calling_function.sol
blob: 9e88c451936941b98d04f89d25f5bfd576fbb332 (plain) (tree)
1
2
3
4
5
6
7
               
                         




                                                                                               
contract test {
    function f() public {
        function() returns(function() returns(function() returns(function() returns(uint)))) x;
        uint y;
        y = x()()()();
    }
}