(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / errors / ConstantC9.vb
blob72cc1f70a0d5f0367a2d0fff9a38fe22852d012b
1 REM LineNo: 18
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: 18
6 REM ExpectedError: BC30445
7 REM ErrorMessage: Const declaration cannot have an array initializer.
9 REM LineNo: 18
10 REM ExpectedError: BC30424
11 REM ErrorMessage: Constants must be an intrinsic or enumerated type, not a class, structure, or array type.
13 REM LineNo: 18
14 REM ExpectedError: BC30445
15 REM ErrorMessage: Const declaration cannot have an array initializer.
17 Module Constant
18 Const d() As Long = {1, 2}, e() As Long = {1, 2}
19 Sub main()
20 End Sub
21 End Module