**** Merged from MCS ****
[mono-project.git] / mcs / btests / ConstantC6.vb
blob227cded9cc5847e332164d2ef7425d0a8d53a737
1 REM LineNo: 10
2 REM ExpectedError: BC30424
3 REM ErrorMessage: Constants must be an intrinsic or enumerated type, not a class, structure, or array type.
5 REM LineNo: 10
6 REM ExpectedError: BC30445
7 REM ErrorMessage: Const declaration cannot have an array initializer.
9 Module Constant
10 Const a() As Integer = {1, 2}
11 Sub main()
12 End Sub
13 End Module