summaryrefslogtreecommitdiff
path: root/tests/headers/with_array_pointers_arguments.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/with_array_pointers_arguments.h')
-rw-r--r--tests/headers/with_array_pointers_arguments.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/headers/with_array_pointers_arguments.h b/tests/headers/with_array_pointers_arguments.h
index 34f669d0..565b3cf6 100644
--- a/tests/headers/with_array_pointers_arguments.h
+++ b/tests/headers/with_array_pointers_arguments.h
@@ -2,4 +2,9 @@
int test_fn(float a, int arr[20]);
-int test_fn2(const float arr[20], int b); \ No newline at end of file
+int test_fn2(const float arr[20], int b);
+
+typedef char defArr[20];
+typedef void foo(defArr a);
+
+void bar(defArr a); \ No newline at end of file