**** Merged from MCS ****
[mono-project.git] / mcs / mbas / Test / errors / EnumC6.vb
blob6801dfd775ab378d87c749e8f5f733299df8d4ad
1 REM LineNo: 10
2 REM ExpectedError: BC30439
3 REM ErrorMessage: Constant expression not representable in type 'Integer'.
5 Imports System
7 Module M
8 Public Enum E1
9 A = System.Int32.MaxValue
11 End Enum
13 Sub Main()
14 Dim i as integer = E1.A
15 End Sub
16 End Module