(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / rerrors / IntegerLiteralTest1.vb
blob74557a25258ad4e9993dd3da684d1b2fe5c1b800
1 Imports System
3 Module IntegerLiteralTest1
4 Sub Main()
5 Try
6 Dim i As Integer
7 i = System.Int32.MaxValue
8 i = i + 1
9 Catch e As Exception
10 Console.WriteLine(e.Message)
11 End Try
12 End Sub
14 End Module