summaryrefslogtreecommitdiff
path: root/tests/headers/struct_with_large_array.hpp
blob: 974ca526a37c7682b9a1ff2a537b77dc18cdd6b6 (plain)
1
2
3
4
5
6
7
8
9
// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq --rust-target 1.40
//
struct S {
    char large_array[33];
};

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