aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/functionTypes/function_types_variable_visibility.sol
blob: 91c2420a8b6e37f2a8c0ce5e05e84fa842b970be (plain) (blame)
1
2
3
4
5
6
7
8
9
contract C {
    function(bytes memory) a1;
    function(bytes memory) internal b1;
    function(bytes memory) internal internal b2;
    function(bytes memory) external c1;
    function(bytes memory) external internal c2;
    function(bytes memory) external public c3;
}
// ----