<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0746</ErrorName>
  <Examples>
    <string>// CS0746: Invalid anonymous type member declarator. Anonymous type members must be a member assignment, simple name or member access expression
// Line: 16


using System;

public class Test
{
	static void Main ()
	{
		var c = new { new Test () };
	}
}
</string>
  </Examples>
</ErrorDocumentation>