summaryrefslogtreecommitdiff
path: root/tests/headers/anon-fields-prefix.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/anon-fields-prefix.h')
-rw-r--r--tests/headers/anon-fields-prefix.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/headers/anon-fields-prefix.h b/tests/headers/anon-fields-prefix.h
deleted file mode 100644
index 8dcae0c6..00000000
--- a/tests/headers/anon-fields-prefix.h
+++ /dev/null
@@ -1,15 +0,0 @@
-// bindgen-flags: --anon-fields-prefix "u"
-
-union color {
- struct {
- unsigned char r;
- unsigned char g;
- unsigned char b;
- };
- struct {
- unsigned char y;
- unsigned char u;
- unsigned char v;
- };
- unsigned char v3[3];
-};