* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / mbas / Test / tests / conversions / ImpConversionDecimaltoLongB.vb
1 'Author:
2 '   V. Sudharsan (vsudharsan@novell.com)
3 '
4 ' (C) 2005 Novell, Inc.
5
6 Module ImpConversionDecimaltoLongC
7         Sub Main()
8                         Dim a as Decimal = 111.9
9                         Dim b as Long = 111.9 + a
10                         if b <> 224
11                                 Throw new System.Exception("Addition of Decimal & Long not working. Expected 224 but got " &b) 
12                         End if          
13         End Sub
14 End Module
15