From cc938cb9bf656b49aecf1d569084b12ad56048d4 Mon Sep 17 00:00:00 2001 From: Wangshan Lu Date: Tue, 1 Aug 2017 15:08:15 +0800 Subject: Support deriving copy for large array --- tests/headers/struct_with_large_array.hpp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tests/headers/struct_with_large_array.hpp (limited to 'tests/headers/struct_with_large_array.hpp') 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 struct ST { + T large_array[33]; +}; -- cgit v1.2.3