**** Merged from MCS ****
[mono-project.git] / mcs / btests / ArrayC2.vb
blob597e8f23d9ce06cd1575aefe56e13a455991f54d
1 REM LineNo: 8
2 REM ExpectedError: BC31087
3 REM ErrorMessage: Array modifiers cannot be specified on both a variable and its type.
5 Imports System
7 Module M
8 Dim a() as Long()
10 Sub Main ()
11 End Sub
12 End Module