(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / btests / ConditionalStatementsC1.vb
blobdfdceabae5c3a67c3f92537a1a211c39177610af
1 REM LineNo: 16
2 REM ExpectedError: BC30081
3 REM ErrorMessage: 'If' must end with a matching 'End If'.
5 REM LineNo: 16
6 REM ExpectedError: BC30205
7 REM ErrorMessage: End of statement expected.
9 Imports System
11 Module ConditionalStatementsC1
13 Sub Main()
14 Dim i As Integer = 0
16 If i = 0 i =2
18 End Sub
20 End Module