Migarting the mbas' negative test cases from the old folder to here.
[mono.git] / mcs / mbas / Test / errors / VariablesC3.vb
1 REM LineNo: 6
2 REM ExpectedError: BC30672
3 REM ErrorMessage: Explicit initialization is not permitted for arrays declared with explicit bounds.
4
5 Module VariableC3
6     Dim j(5) As Integer = {1, 2, 3, 4, 5}
7
8     Sub main()
9     End Sub
10 End Module