(RegisterObject): Throw ArgumentOutOfRangeException if the objectID
[mono.git] / mcs / btests / MustInheritC6.vb
1 Imports System
2
3 'Testing a mustoverride method with a method body
4
5 MustInherit Class C3
6     Private MustOverride Function F2() As Integer
7         Console.WriteLine("If you see this then there is something wrong!!!")
8     End Function
9 End Class
10
11 Module MustInheritTest
12         Sub Main()
13         End Sub
14 End Module
15