<?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>CS0826</ErrorName>
  <Examples>
    <string>// CS0826: The type of an implicitly typed array cannot be inferred from the initializer. Try specifying array type explicitly
// Line: 9


public class Test
{
	static void Main ()
	{
		var e = new[] { null };
	}
}

</string>
    <string>// CS0826: The type of an implicitly typed array cannot be inferred from the initializer. Try specifying array type explicitly
// Line: 13


public class Test
{
	static void TestMethod ()
	{
	}
	
	static void Main ()
	{
		var e = new[] { TestMethod () };
	}
}

</string>
    <string>// CS0826: The type of an implicitly typed array cannot be inferred from the initializer. Try specifying array type explicitly
// Line: 9


public class Test
{
	static void Main ()
	{
		var e = new[,,,] { 1, 2 }; 
	}
}

</string>
    <string>// CS0826: The type of an implicitly typed array cannot be inferred from the initializer. Try specifying array type explicitly
// Line: 9


public class Test
{
	static void Main ()
	{
		var e = new[] { delegate {} };
	}
}

</string>
    <string>// CS0826: The type of an implicitly typed array cannot be inferred from the initializer. Try specifying array type explicitly
// Line: 8

public class Test
{
	static void Main ()
	{
		var e = new[] { 1, "a" };
	}
}

</string>
    <string>// CS0826: The type of an implicitly typed array cannot be inferred from the initializer. Try specifying array type explicitly
// Line: 8

public class Test
{
	static void Main ()
	{
		var e = new[] { 1, null };
	}
}

</string>
    <string>// CS0826: The type of an implicitly typed array cannot be inferred from the initializer. Try specifying array type explicitly
// Line: 8

public class Test
{
	static void Main ()
	{
		var e = new[] { Main };
	}
}

</string>
    <string>// CS0826: The type of an implicitly typed array cannot be inferred from the initializer. Try specifying array type explicitly
// Line: 9


public class Test
{
	static void Main ()
	{
		var e = new[] { };
	}
}

</string>
  </Examples>
</ErrorDocumentation>