(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / btests / Inheritance1.vb
blob680e299f9c5de6301909fd02de1bd1fdd599ba07
1 ' this could be a compile time exception too
2 ' But MS vb 7.0 is throwing type cast exception at runtime
3 ' hence I am keeping it as a Negetive-Runtime-Test candidate
5 Public Class C1
6 End Class
8 Public Class C2
9 Inherits C1
10 End Class
12 Module InheritanceC3
13 Sub Main()
14 Dim b As C2 = New C1()
15 End Sub
16 End Module