* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / mbas / Test / tests / general / InheritanceH.vb
1 Imports System
2
3 'Testing a class that inherits from an inner class of another class that inherits from the first class
4 Class C1
5     Inherits C2.C3
6 End Class
7
8 Class C2
9     Inherits C1
10         Class C3
11         End Class
12 End Class
13
14 'Testing a class that inherits from its inner class
15                                                                                                                              
16 Class C4
17     Inherits C4.C5
18         Class C5
19         End Class
20 End Class
21
22
23 Module Inheritance
24         Sub Main()
25         End Sub
26 End Module