**** Merged from MCS ****
[mono-project.git] / mcs / mbas / Test / errors / ExceptionHandlingC10.vb
blob09bfe1c295d85deca3e9fb28f57239d52ee5e83f
1 REM LineNo: 10
2 REM ExpectedError: BC30132
3 REM ErrorMessage: Label '14' is not defined
5 Imports System
7 Module ExceptionHandlingC10
9 Function f1()
10 On Error GoTo 14
11 Dim i As Integer
12 i = 1 / i
13 End Function
15 Sub Main()
16 f1()
17 End Sub
19 End Module