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