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

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

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