summaryrefslogtreecommitdiff
path: root/Examples/test-suite/mod.h
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/mod.h')
-rw-r--r--Examples/test-suite/mod.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/Examples/test-suite/mod.h b/Examples/test-suite/mod.h
new file mode 100644
index 0000000..aae6298
--- /dev/null
+++ b/Examples/test-suite/mod.h
@@ -0,0 +1,34 @@
+
+
+class C;
+
+class A
+{
+public:
+ A() {}
+ C* GetC() { return NULL; }
+
+ void DoSomething(A* a) {}
+};
+
+
+class B : public A
+{
+public:
+ B() {}
+
+};
+
+
+class C : public B
+{
+public:
+ C() {}
+};
+
+
+class D : public C
+{
+public:
+ D() {}
+};