summaryrefslogtreecommitdiff
path: root/tests/headers/issue-833.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/issue-833.hpp')
-rw-r--r--tests/headers/issue-833.hpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/headers/issue-833.hpp b/tests/headers/issue-833.hpp
deleted file mode 100644
index f8b708bf..00000000
--- a/tests/headers/issue-833.hpp
+++ /dev/null
@@ -1,8 +0,0 @@
-// bindgen-flags: --generate functions --allowlist-function func --raw-line "#[repr(C)] pub struct nsTArray<T> { pub hdr: *const T }"
-
-template<typename T>
-class nsTArray {
- T* mHeader;
-};
-
-extern "C" nsTArray<int>* func();