summaryrefslogtreecommitdiff
path: root/tests/headers/func_ptr_in_struct.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/func_ptr_in_struct.h')
-rw-r--r--tests/headers/func_ptr_in_struct.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/headers/func_ptr_in_struct.h b/tests/headers/func_ptr_in_struct.h
new file mode 100644
index 00000000..8e9bf60c
--- /dev/null
+++ b/tests/headers/func_ptr_in_struct.h
@@ -0,0 +1,3 @@
+struct Foo {
+ enum baz (*bar) (int x, int y);
+};