(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / rerrors / Array1.vb
blob49c5f44a67d2c79bd9ac47b2dd0255c2a93d3ca1
1 'Unhandled Exception: System.ArrayTypeMismatchException: 'ReDim' can
2 ' only change the rightmost dimension.
4 Imports System
6 Module Array1
8 Sub Main()
9 Dim arr As Integer(,) = {{1, 2}, {3, 4}}
10 ReDim Preserve arr(3, 3)
11 arr(2, 2) = 12
12 End Sub
13 End Module