[mcs] Allow properties and indexers of by-ref values to be set without setter
[mono.git] / mcs / errors / cs1525-35.cs
1 // CS1525: Unexpected symbol `[', expecting `{'
2 // Line: 8
3
4 class Test
5 {
6         static void Main ()
7     {
8         var a = new [][] { };
9     }
10 }