summaryrefslogtreecommitdiff
path: root/tests/headers/duplicated-namespaces-definitions.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/duplicated-namespaces-definitions.hpp')
-rw-r--r--tests/headers/duplicated-namespaces-definitions.hpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/headers/duplicated-namespaces-definitions.hpp b/tests/headers/duplicated-namespaces-definitions.hpp
deleted file mode 100644
index 7c8888de..00000000
--- a/tests/headers/duplicated-namespaces-definitions.hpp
+++ /dev/null
@@ -1,18 +0,0 @@
-// bindgen-flags: --enable-cxx-namespaces
-
-namespace foo {
- class Bar;
-}
-
-namespace bar {
- struct Foo {
- foo::Bar* ptr;
- };
-};
-
-namespace foo {
- class Bar {
- int foo;
- bool baz;
- };
-}