summaryrefslogtreecommitdiff
path: root/tests/headers/struct_with_large_array.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/struct_with_large_array.hpp')
-rw-r--r--tests/headers/struct_with_large_array.hpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/headers/struct_with_large_array.hpp b/tests/headers/struct_with_large_array.hpp
deleted file mode 100644
index 974ca526..00000000
--- a/tests/headers/struct_with_large_array.hpp
+++ /dev/null
@@ -1,9 +0,0 @@
-// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq --rust-target 1.40
-//
-struct S {
- char large_array[33];
-};
-
-template<typename T> struct ST {
- T large_array[33];
-};