(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / errors / ConditionalStatementsC14.vb
blob96a7d353591d63275119f84dbd4ea568c9be0c56
1 REM LineNo: 14
2 REM ExpectedError: BC32006
3 REM ErrorMessage: 'char' values cannot be converted to 'Integer'.
5 Imports System
7 Module ConditionalStatementsC14
9 Sub Main()
10 Dim i As Integer = 0
11 Select Case i
12 Case 1
13 Console.WriteLine("Hello World")
14 Case >= "E"c
15 Console.WriteLine("Compile time error")
16 end select
17 End Sub
19 End Module