(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / errors / ArrayC1.vb
blobae3e64b945ef9d8e41c28a3ea75339fb3ce8c781
1 REM LineNo: 8
2 REM ExpectedError: BC30638
3 REM ErrorMessage: Array bounds cannot appear in type specifiers.
5 Imports System
7 Module M
8 Dim a as Long(5)
10 Sub Main ()
11 End Sub
12 End Module