summaryrefslogtreecommitdiff
path: root/tests/headers/without_array_pointers_arguments.h
blob: 2f0668749bdc0af5767f5fa28f16d72356ed7ac0 (plain)
1
2
3
4
5
6
7
8
9

int test_fn(float a, int arr[20]);

int test_fn2(const float arr[20], int b);

typedef char defArr[20];
typedef void foo(defArr a);

void bar(defArr a);