**** Merged from MCS ****
[mono-project.git] / mcs / btests / IntegerLiteralTest4.vb
blob69784293f7913943b8ed66f73271f3bfd9b42e87
1 Imports System
2 Module IntegerLiteralTest4
3 Sub Main()
4 Try
5 Dim l As Integer
6 l = System.Int32.MinValue
7 l = l - 1
8 Catch e As Exception
9 Console.WriteLine(e.Message)
10 End Try
11 End Sub
12 End Module