(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / btests / CharacterLiteralsC7.vb
blob4ce311a9d4926693b95ed47fe83e2ced6b5562cd
1 REM LineNo: 14
2 REM ExpectedError: BC30452
3 REM ErrorMessage: Operator '*' is not defined for types 'Char' and 'Char'.
5 Imports System
6 Module CharacterLiteral
7 Sub Main()
8 Try
9 Dim a As Char="R"c
10 Dim b As Char="W"c
11 Dim c As Char
12 Dim d As Char
13 c=a+b
14 d=a*b
16 Catch e As Exception
17 End Try
18 End Sub
19 End Module