summaryrefslogtreecommitdiff
path: root/libbindgen/tests/headers/nested_vtable.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'libbindgen/tests/headers/nested_vtable.hpp')
-rw-r--r--libbindgen/tests/headers/nested_vtable.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/libbindgen/tests/headers/nested_vtable.hpp b/libbindgen/tests/headers/nested_vtable.hpp
new file mode 100644
index 00000000..87d6ce1f
--- /dev/null
+++ b/libbindgen/tests/headers/nested_vtable.hpp
@@ -0,0 +1,8 @@
+class nsISupports {
+public:
+ virtual nsISupports* QueryInterface();
+};
+
+class nsIRunnable : public nsISupports {};
+
+class Runnable : public nsIRunnable {};