summaryrefslogtreecommitdiff
path: root/tests/headers/forward_declared_struct.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/forward_declared_struct.h')
-rw-r--r--tests/headers/forward_declared_struct.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/headers/forward_declared_struct.h b/tests/headers/forward_declared_struct.h
new file mode 100644
index 00000000..2a69450c
--- /dev/null
+++ b/tests/headers/forward_declared_struct.h
@@ -0,0 +1,11 @@
+struct a;
+
+struct a {
+ int b;
+};
+
+struct c {
+ int d;
+};
+
+struct c; \ No newline at end of file