**** Merged from MCS ****
[mono-project.git] / mcs / btests / ConditionalStatementsC2.vb
blobd62f78b181fe65b7c0aac40a36f2249be6ca0d39
1 REM LineNo: 12
2 REM ExpectedError: BC30081
3 REM ErrorMessage: 'If' must end with a matching 'End If'.
5 Imports System
7 Module ConditionalStatementsC2
9 Sub Main()
10 Dim i As Integer = 0
12 if true then
14 End Sub
16 End Module