aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/functionTypes/private_function_type.sol
blob: 9d4f0a097fb41d764256db10abc698375ae08d22 (plain) (blame)
1
2
3
4
5
6
7
contract C {
    function f() public {
        function(uint) private returns (uint) x;
    }
}
// ----
// TypeError: (47-86): Invalid visibility, can only be "external" or "internal".