updated test.sources
[mono.git] / mcs / btests / StringLiteralsC2.vb
1 Imports System
2 Module StringLiteral
3         Sub Main()
4                 Try
5                         Dim a As String='Hello'
6                         Dim b As String=Hello
7                 Catch e As Exception
8                         Console.WriteLine(e.Message)
9                 End Try
10         
11         End Sub
12 End Module