<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS8082</ErrorName>
  <Examples>
    <string>// CS8082: An argument to nameof operator cannot include sub-expression
// Line: 9

class C
{
	void Foo ()
	{
		object o = null;
		var s = nameof (o.ToString ().Equals);
	}
}</string>
    <string>// CS8082: An argument to nameof operator cannot include sub-expression
// Line: 8

class C
{
	void Foo ()
	{
		var v = nameof (this?.Equals);
	}
}
</string>
    <string>// CS8082: An argument to nameof operator cannot include sub-expression
// Line: 8

class C
{
	void Foo ()
	{
		var s = nameof (1.ToString);
	}
}</string>
    <string>// CS8082: An argument to nameof operator cannot include sub-expression
// Line: 9

class C
{
	void Foo ()
	{
		dynamic o = null;
		var s = nameof (o.ToString ().Equals);
	}
}</string>
  </Examples>
</ErrorDocumentation>