2004-12-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / btests / Array1.vb
1 'Unhandled Exception: System.ArrayTypeMismatchException: 'ReDim' can 
2 ' only change the rightmost dimension.
3
4 Imports System
5
6 Module Array1
7
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
14