* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / mbas / Test / errors / ArrayC2.vb
1 REM LineNo: 8
2 REM ExpectedError: BC31087
3 REM ErrorMessage: Array modifiers cannot be specified on both a variable and its type.
4
5 Imports System
6
7 Module M
8     Dim a() as Long()
9
10     Sub Main ()
11     End Sub
12 End Module
13