summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/issue-833-1.hpp
blob: d66ee01fa7d71ea19f1c1e2bf271155a545f3033 (plain)
1
2
3
4
5
6
7
8
// bindgen-flags: --generate functions --allowlist-function func --raw-line "#[repr(C)] pub struct nsTArray { pub hdr: *const () }"

template<typename T>
class nsTArray {
  static T* sFoo;
};

extern "C" nsTArray<int>* func();