summaryrefslogtreecommitdiff
path: root/tests/headers/union_fields.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/union_fields.hpp')
-rw-r--r--tests/headers/union_fields.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/headers/union_fields.hpp b/tests/headers/union_fields.hpp
new file mode 100644
index 00000000..aec3a7fd
--- /dev/null
+++ b/tests/headers/union_fields.hpp
@@ -0,0 +1,5 @@
+typedef union {
+ int mInt;
+ float mFloat;
+ void* mPointer;
+} nsStyleUnion;