(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / btests / InheritanceC.vb
blob3c7122897b7597034780bf28bf4cc0b78b2f3b0b
1 Public Interface I1
2 End Interface
4 Public Interface I2
5 End Interface
7 Public Interface I3
8 Inherits I1
9 Inherits I2
10 End Interface
12 Module InheritanceC
13 Sub Main()
14 End Sub
15 End Module