(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / errors / ExceptionHandlingC14.vb
blob329fbfc649262825796f411d6ebd7f818b07bcaf
1 REM LineNo: 10
2 REM ExpectedError: BC30203
3 REM ErrorMessage: Identifier Expected
5 Imports System
7 Module ExceptionHandlingC14
9 Sub Main()
10 On Error GoTo
11 On Error Resume Next
12 End Sub
14 End Module