Corrected GotoStatementA.vb and removed ^M in all tests
[mono.git] / mcs / mbas / Test / tests / ExpConversionInttoLongA.vb
1 'Author:
2 '   V. Sudharsan (vsudharsan@novell.com)
3 '
4 ' (C) 2005 Novell, Inc.
5
6 Module ExpConversionofInttoLongA
7         Sub Main()
8                 Dim a as Integer = 123
9                 Dim b as Long = CLng(a)
10                 if b<>123 then 
11                         Throw New System.Exception("Explicit Conversion of Int to Long has Failed")
12                 End if          
13         End Sub
14 End Module