summaryrefslogtreecommitdiff
path: root/tests/headers/allowlist-namespaces-basic.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/allowlist-namespaces-basic.hpp')
-rw-r--r--tests/headers/allowlist-namespaces-basic.hpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/headers/allowlist-namespaces-basic.hpp b/tests/headers/allowlist-namespaces-basic.hpp
deleted file mode 100644
index fb4dd1be..00000000
--- a/tests/headers/allowlist-namespaces-basic.hpp
+++ /dev/null
@@ -1,10 +0,0 @@
-// bindgen-flags: --enable-cxx-namespaces --allowlist-type outer::inner::Helper
-
-namespace outer {
- namespace inner {
- struct Helper {};
- }
- struct Test {
- inner::Helper helper;
- };
-}