<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS1742</ErrorName>
  <Examples>
    <string>// CS1742: An element access expression cannot use named argument
// Line: 13
// Compiler options: -unsafe -langversion:future

using System;

unsafe class C
{
	static void Main ()
	{
		int *p = null;

		if (p [value:10] == 4)
			return;
	}
}
</string>
    <string>// CS1742: An element access expression cannot use named argument
// Line: 9
// Compiler options: -langversion:future

class C
{
	public static void Main ()
	{
		int[] o = new int[5];
		o [u:3] = 9;
	}
}
</string>
  </Examples>
</ErrorDocumentation>