diff options
Diffstat (limited to 'tests/headers/disable-nested-struct-naming.h')
-rw-r--r-- | tests/headers/disable-nested-struct-naming.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/headers/disable-nested-struct-naming.h b/tests/headers/disable-nested-struct-naming.h deleted file mode 100644 index 0e4fccb6..00000000 --- a/tests/headers/disable-nested-struct-naming.h +++ /dev/null @@ -1,24 +0,0 @@ -// bindgen-flags: --disable-nested-struct-naming - -struct foo { - struct bar1 { - int x1; - struct { - int x2; - struct { - int x3; - struct bar4 { - int x4; - } b4; - } b3; - } b2; - } b1; -}; - -struct { - struct { - struct baz { - int x; - } b; - } anon2; -} anon1; |