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