2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / mbas / Test / tests / ExpConversionInttoShortA.vb
1 'Author:
2 '   V. Sudharsan (vsudharsan@novell.com)
3 '
4 ' (C) 2005 Novell, Inc.
5
6 Module ExpConversionInttoShortA
7         Sub Main()
8                 Dim a as Integer = 123 
9                 Dim b as Short
10                 b = CShort(a)
11                 if b <> 123
12                         Throw new System.Exception("Int to Short Conversion is not working properly. Expected 123 but got " &b)
13                 End if  
14         End Sub
15 End Module