* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / mbas / Test / tests / types / EnumC1.vb
1 Imports System
2
3 Module M
4         Public Enum E1 As Long
5                 A = 2.3
6                 B = 2.5
7         End Enum
8
9    Sub Main()
10         if E1.A<> 2
11                 throw new System.Exception("#A1 Enum not working")
12         end if
13     End Sub
14
15         
16
17 End Module