(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / btests / ExceptionHandlingC16.vb
blobf048de43e896b09f4365095dbb93a2d740b599d0
1 REM LineNo: 12
2 REM ExpectedError: BC30003
3 REM ErrorMessage: 'Next' expected
5 Imports System
7 Module ExceptionHandlingC16
9 Sub Main()
11 On Error GoTo ErrorHandler
12 On Error Resume
13 Exit Sub
14 ErrorHandler:
15 Console.WriteLine("Error Handler")
17 End Sub
19 End Module