**** Merged from MCS ****
[mono-project.git] / mcs / btests / ConditionalStatementsC7.vb
blob9c15ae611d58203a0aad02b519b69cc49c2c1f04
1 REM LineNo: 16
2 REM ExpectedError: BC30087
3 REM ErrorMessage: 'End If' must be preceded by a matching 'If'.
5 Imports System
7 Module ConditionalStatementsC7
9 Sub Main()
11 Dim i As Integer = 0
13 if i = 0 then
14 i = 1
15 end if
16 end if
18 End Sub
20 End Module