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