summaryrefslogtreecommitdiff
path: root/tests/headers/anon_struct_in_union_1_0.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/anon_struct_in_union_1_0.h')
-rw-r--r--tests/headers/anon_struct_in_union_1_0.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/headers/anon_struct_in_union_1_0.h b/tests/headers/anon_struct_in_union_1_0.h
deleted file mode 100644
index fe0a030c..00000000
--- a/tests/headers/anon_struct_in_union_1_0.h
+++ /dev/null
@@ -1,9 +0,0 @@
-// bindgen-flags: --rust-target 1.0
-
-struct s {
- union {
- struct inner {
- int b;
- } field;
- } u;
-};