* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / mbas / Test / errors / VariablesC21.vb
1 'Author:
2 '   V. Sudharsan (vsudharsan@novell.com)
3 '
4 ' (C) 2005 Novell, Inc.
5
6 REM LineNo: 14\r
7 REM ExpectedError: BC31087\r
8 REM ErrorMessage: Array modifiers cannot be specified on both a variable and its type.\r
9 \r
10 Imports System\r
11 \r
12 Module Test\r
13     Sub Main()\r
14         dim b(,) As Integer(,) = {}\r
15         dim b1(,) As Integer = {}\r
16         dim b2 As Integer(,) = {}\r
17     End Sub\r
18 End Module\r