summaryrefslogtreecommitdiff
path: root/libbindgen/tests/headers/inline_namespace.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'libbindgen/tests/headers/inline_namespace.hpp')
-rw-r--r--libbindgen/tests/headers/inline_namespace.hpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/libbindgen/tests/headers/inline_namespace.hpp b/libbindgen/tests/headers/inline_namespace.hpp
deleted file mode 100644
index 2ccf8ab0..00000000
--- a/libbindgen/tests/headers/inline_namespace.hpp
+++ /dev/null
@@ -1,11 +0,0 @@
-// bindgen-flags: --enable-cxx-namespaces -- -std=c++11
-
-namespace foo {
- inline namespace bar {
- using Ty = int;
- };
-};
-
-class Bar {
- foo::Ty baz;
-};