summaryrefslogtreecommitdiff
path: root/tests/headers/opaque-tracing.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/opaque-tracing.hpp')
-rw-r--r--tests/headers/opaque-tracing.hpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/headers/opaque-tracing.hpp b/tests/headers/opaque-tracing.hpp
deleted file mode 100644
index cf65276a..00000000
--- a/tests/headers/opaque-tracing.hpp
+++ /dev/null
@@ -1,21 +0,0 @@
-// bindgen-flags: --opaque-type ".*" --allowlist-function=foo --with-derive-hash --with-derive-partialeq --with-derive-eq
-
-class Container;
-
-// The allowlist tracing should reach the Container type, even though it's
-// marked as opaque.
-void foo(Container* c);
-
-template<typename T>
-class Wat {
- T foo;
-};
-
-class OtherOpaque {
- int bar;
-};
-
-class Container {
- Wat<int> bar;
- OtherOpaque baz;
-};