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