Moved the tests to respective directories
[mono.git] / mcs / mbas / Test / tests / general / InheritanceC.vb
1 Public Interface I1
2 End Interface
3
4 Public Interface I2
5 End Interface
6
7 Public Interface I3
8     Inherits I1
9     Inherits I2
10 End Interface
11
12 Module InheritanceC
13     Sub Main()
14     End Sub
15 End Module