(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / errors / ConstantC7.vb
blob72e3cc4e80e282eeba6b601705e810640ffb1c81
1 REM LineNo: 14
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: 14
6 REM ExpectedError: BC30672
7 REM ErrorMessage: Explicit initialization is not permitted for arrays declared with explicit bounds.
9 REM LineNo: 14
10 REM ExpectedError: BC30445
11 REM ErrorMessage: Const declaration cannot have an array initializer.
13 Module Constant
14 Const b(2) As Long = {1, 2}
15 Sub main()
16 End Sub
17 End Module