mirror of
https://github.com/openharmony/third_party_rust_bindgen.git
synced 2026-07-22 15:35:27 -04:00
10 lines
181 B
C++
10 lines
181 B
C++
// bindgen-flags: --with-derive-hash --with-derive-partialeq --with-derive-eq
|
|
//
|
|
struct S {
|
|
char large_array[33];
|
|
};
|
|
|
|
template<typename T> struct ST {
|
|
T large_array[33];
|
|
};
|