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