diff options
Diffstat (limited to 'tests/headers/class.hpp')
-rw-r--r-- | tests/headers/class.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/headers/class.hpp b/tests/headers/class.hpp index e753f186..402f8b2b 100644 --- a/tests/headers/class.hpp +++ b/tests/headers/class.hpp @@ -2,6 +2,8 @@ class C { int a; // More than rust limits (32) char big_array[33]; + char zero_length_array[0]; + char incomplete_array[]; }; class WithDtor { |