(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / errors / ConditionalStatementsC4.vb
blobdd7b36045bf847c7b82969391b133f298af078ed
1 REM LineNo: 14
2 REM ExpectedError: BC30081
3 REM ErrorMessage: 'If' must end with a matching 'End If'.
5 Imports System
7 Module ConditionalStatementsC4
9 Sub Main()
10 Dim i As Integer = 0
12 if false then
13 i = 1
14 elseif true
15 i = 2
17 End Sub
19 End Module