summaryrefslogtreecommitdiff
path: root/tests/headers/typedefd-array-as-function-arg.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/typedefd-array-as-function-arg.h')
-rw-r--r--tests/headers/typedefd-array-as-function-arg.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/headers/typedefd-array-as-function-arg.h b/tests/headers/typedefd-array-as-function-arg.h
new file mode 100644
index 00000000..93790591
--- /dev/null
+++ b/tests/headers/typedefd-array-as-function-arg.h
@@ -0,0 +1,3 @@
+// foo.h
+typedef float myVector3[3];
+void modifyVectorFunc(myVector3 v);