2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1742.cs
blob53698a87146fe4a51ff617ad6570a8899a4f552d
1 // CS1742: An element access expression cannot use named argument
2 // Line: 9
3 // Compiler options: -langversion:future
5 class C
7 public static void Main ()
9 int[] o = new int[5];
10 o [u:3] = 9;