<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS8084</ErrorName>
  <Examples>
    <string>// CS8084: An argument to nameof operator cannot be method group with type arguments
// Line: 12

static class C
{
	static void Foo&lt;T&gt; ()
	{
	}

	static void Main ()
	{
		string s = nameof (C.Foo&lt;int&gt;);
	}
}</string>
    <string>// CS8084: An argument to nameof operator cannot be method group with type arguments
// Line: 12

static class C
{
	static void Foo&lt;T&gt; ()
	{
	}

	static void Main ()
	{
		string s = nameof (Foo&lt;int&gt;);
	}
}</string>
  </Examples>
</ErrorDocumentation>