* platforms/linux.make (platform-check): Make more robust.
[mono.git] / mcs / btests / IntegerLiteralTest4.vb
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