(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / btests / ConditionalStatementsC15.vb
blob5a9f89504f2f1cbd65f119f0dfd5c3da48e591ff
1 REM LineNo: 13
2 REM ExpectedError: BC30058
3 REM ErrorMessage: Statements and labels are not valid between 'Select Case' and first 'Case'
5 Imports System
7 Module ConditionalStatementsC15
9 Sub Main()
10 Dim i As Integer = 0
11 Select Case i
13 Console.WriteLine("Hello World")
14 Case >= 2
15 Console.WriteLine("Compile time error")
16 end select
17 End Sub
19 End Module