(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / tests / CharacterLiterals.vb
bloba5134dd4161a3036413774b51f266b29d1128588
1 Module CharacterLiterals
2 Sub Main()
3 Dim c As Char
4 c = "x"
6 c = "X"
8 Dim a As String = "X"c
9 If a <> c Then
10 Throw New System.Exception("a is not same as c")
11 End If
13 'the outcome should be "x"
14 c = """x"""
15 End Sub
17 End Module