2004-11-08 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / btests / IntegerLiteralTest2.vb
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