Add new error case
[mono.git] / mcs / btests / StringLiterals1.vb
1 Imports System
2 Module StringLiteral
3         Sub Main()
4                 Try
5                         Dim a As String="Hello"
6                         Dim b As String="World"
7                         Dim c As String=a*b
8                 Catch e As Exception
9                         Console.WriteLine(e.Message)
10                 End Try
11         
12         End Sub
13 End Module