summaryrefslogtreecommitdiff
path: root/tests/headers/union_with_anon_unnamed_struct.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/union_with_anon_unnamed_struct.h')
-rw-r--r--tests/headers/union_with_anon_unnamed_struct.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/headers/union_with_anon_unnamed_struct.h b/tests/headers/union_with_anon_unnamed_struct.h
deleted file mode 100644
index 04903318..00000000
--- a/tests/headers/union_with_anon_unnamed_struct.h
+++ /dev/null
@@ -1,11 +0,0 @@
-// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq
-//
-union pixel {
- unsigned int rgba;
- struct {
- unsigned char r;
- unsigned char g;
- unsigned char b;
- unsigned char a;
- };
-};