(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / errors / CharacterLiteralsC4.vb
bloba40ebcc1e3ae52587309001e05f18da53373b38c
1 REM LineNo: 9
2 REM ExpectedError: BC30648
3 REM ErrorMessage: String constants must end with a double quote.
5 Imports System
6 Module CharacterLiteral
7 Sub Main()
8 Try
9 Dim f As Char="""c
11 Catch e As Exception
12 End Try
13 End Sub
14 End Module