summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1742.cs
blob: 57e3c9e30a1df3c2d25347906778f02c12d15be1 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS1742: An element access expression cannot use named argument
// Line: 9

class C
{
	public static void Main ()
	{
		int[] o = new int[5];
		o [u:3] = 9;
	}
}