1 2 3 4 5 6 7 8 9 10 11
class C { int a; // More than rust limits (32) char big_array[33]; }; class WithDtor { int b; ~WithDtor() {} };