<?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>CS8071</ErrorName>
  <Examples>
    <string>// CS8071: Type arguments are not allowed in the nameof operator
// Line: 10

using SCGL = System.Collections.Generic.List&lt;int&gt;;

class X
{
	public static int Main ()
	{
		var x = nameof (SCGL.Contains);
		return 0;
	}
}</string>
    <string>// CS8071: Type arguments are not allowed in the nameof operator
// Line: 16

class G&lt;T&gt;
{
	class N
	{
		public int Foo;
	}
}

class Test
{
	public static void Main ()
	{
		var n = nameof (G&lt;int&gt;.N.Foo);
	}
}
</string>
  </Examples>
</ErrorDocumentation>