diff options
Diffstat (limited to 'tests/headers/class.hpp')
-rw-r--r-- | tests/headers/class.hpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/headers/class.hpp b/tests/headers/class.hpp index 53894ab3..4d795363 100644 --- a/tests/headers/class.hpp +++ b/tests/headers/class.hpp @@ -1,3 +1,11 @@ class C { int a; + // More than rust limits (32) + char big_array[33]; +}; + +class WithDtor { + int b; + + ~WithDtor() {} }; |