2004-11-08 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / btests / 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