mirror of
https://github.com/openharmony/third_party_rust_bindgen.git
synced 2026-08-27 13:37:17 -04:00
16 lines
211 B
C++
16 lines
211 B
C++
template<typename T>
|
|
struct nsTArray {
|
|
int x;
|
|
};
|
|
/**
|
|
* <div rustbindgen replaces="nsTArray"></div>
|
|
*/
|
|
template<typename T>
|
|
struct nsTArray_Simple {
|
|
unsigned int y;
|
|
};
|
|
|
|
struct Test {
|
|
nsTArray<long> a;
|
|
};
|