**** Merged from MCS ****
[mono-project.git] / mcs / mbas / Test / errors / ExceptionHandlingC8.vb
blob663e577f77c8ce1ae83c5afc92b973b27e253e41
1 REM LineNo: 14
2 REM ExpectedError: BC30442
3 REM ErrorMessage: 'Finally' must end with a matching 'End Try'
5 Imports System
7 Module ExceptionHandlingC8
9 Sub Main()
11 Dim i As Integer = 0
12 Try
13 i = 1 / i
14 Finally
16 End Sub
18 End Module