2004-11-07 Ben Maurer <bmaurer@ximian.com>
[mono-project.git] / mcs / btests / ConditionalStatementsC5.vb
blobf3b30e807e0f59be4a9a1e1d4391e33f22d5bcdc
1 REM LineNo: 13
2 REM ExpectedError: BC30311
3 REM ErrorMessage: Value of type 'Char' cannot be converted to 'Boolean'.
5 Imports System
7 Module ConditionalStatementsC5
9 Sub Main()
11 Dim i As Integer = 0
13 if "a"c then
14 end if
16 End Sub
18 End Module