(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / btests / LongLiteral1.vb
blobac32206517eae75bdad3dccde76ed05cddf99da6
1 Imports System
2 Module LongLiteral
3 Sub Main()
4 Try
5 Dim a As Long
6 a="Hello"
7 Catch e As Exception
8 Console.WriteLine(e.Message)
9 End Try
10 End Sub
11 End Module