summaryrefslogtreecommitdiff
path: root/tests/headers/struct_with_large_array.hpp
blob: fc67b333a3c58be29d5f9f79d28723b99415361e (plain)
1
2
3
4
5
6
7
struct S {
    char large_array[33];
};

template<typename T> struct ST {
    T large_array[33];
};