summaryrefslogtreecommitdiff
path: root/tests/headers/dynamic_loading_with_class.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/dynamic_loading_with_class.hpp')
-rw-r--r--tests/headers/dynamic_loading_with_class.hpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/headers/dynamic_loading_with_class.hpp b/tests/headers/dynamic_loading_with_class.hpp
deleted file mode 100644
index 632db4d0..00000000
--- a/tests/headers/dynamic_loading_with_class.hpp
+++ /dev/null
@@ -1,15 +0,0 @@
-// bindgen-flags: --dynamic-loading TestLib
-
-int foo(void *x);
-
-class A {
- int _x;
-
- public:
- A(int x);
-
- void some_function();
- void some_other_function();
-};
-
-void bar();