2004-09-23 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / btests / MustInheritC5.vb
1 'Testing a class that is declared as both mustinherit and notinheritable
2
3 Imports System                                                                                                                             
4 NotInheritable MustInherit Class A
5           Public MustOverride Sub F()
6 End Class
7
8 Module MustInheritTest
9         Sub Main()
10                 
11         End Sub
12 End Module
13