summaryrefslogtreecommitdiff
path: root/tests/headers/derive-debug-opaque-template-instantiation.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/derive-debug-opaque-template-instantiation.hpp')
-rw-r--r--tests/headers/derive-debug-opaque-template-instantiation.hpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/headers/derive-debug-opaque-template-instantiation.hpp b/tests/headers/derive-debug-opaque-template-instantiation.hpp
deleted file mode 100644
index 0c70fcc5..00000000
--- a/tests/headers/derive-debug-opaque-template-instantiation.hpp
+++ /dev/null
@@ -1,12 +0,0 @@
-// bindgen-flags: --impl-debug --rust-target 1.40
-
-// This type is opaque because the second template parameter
-// is a non-type template parameter
-template<typename T, int N>
-class Opaque {
- T array[N];
-};
-
-class Instance {
- Opaque<int, 50> val;
-};