aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/functionTypes/external_function_to_function_type_calldata_parameter.sol
blob: cbf90e403fe826181a3c53716f5e8e926c8dd4b1 (plain) (blame)
1
2
3
4
5
6
7
contract C {
    function f(function(bytes memory) external g) public { }
    function callback(bytes) external {}
    function g() public {
        f(this.callback);
    }
}