2004-11-08 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / btests / OverrideC2.vb
1 REM LineNo: 8
2 REM ExpectedError: BC31088
3 REM ErrorMessage: 'NotOverridable' cannot be specified for methods that do not override another method.
4
5 Class C1
6         'methods that do not override any other 
7         'method should not be declared 'notoverridable'
8         Public Notoverridable Sub S() 
9         End Sub
10 End Class
11 Module OverrideC2
12         Sub Main()
13         End Sub
14 End Module