diff options
Diffstat (limited to 'tests/headers/struct_with_large_array.hpp')
-rw-r--r-- | tests/headers/struct_with_large_array.hpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/headers/struct_with_large_array.hpp b/tests/headers/struct_with_large_array.hpp new file mode 100644 index 00000000..fc67b333 --- /dev/null +++ b/tests/headers/struct_with_large_array.hpp @@ -0,0 +1,7 @@ +struct S { + char large_array[33]; +}; + +template<typename T> struct ST { + T large_array[33]; +}; |