summaryrefslogtreecommitdiff
path: root/tests/headers/class.hpp
blob: 4d795363ee8b39b21c970ad920d7ae8c715a5bde (plain)
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() {}
};