<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1001</ErrorName>
  <Examples>
    <string>// CS1001: Unexpected symbol `)', expecting identifier
// Line: 6

class B&lt;T&gt;
{
	T Foo (T)
	{
	}
}
</string>
    <string>// CS1001: Unexpected symbol `)', expecting identifier
// Line: 8

class C
{
	public static void Main ()
	{
		object o = (int) =&gt; null;
	}
}
</string>
    <string>// CS1001: Unexpected symbol `)', expecting identifier
// Line: 6

class T {
	// Change (args) to (string args) to fix it
	public static int Main (args)
	{
	}
}
</string>
    <string>// CS1001: Missing identifier to pre-processor directive
// Line: 5

#if false
	#define
#endif
</string>
    <string>// CS1001: Unexpected symbol `)', expecting identifier
// Line: 6

class C
{
	public void Foo (params System.Action)
	{
	}
}</string>
    <string>// CS1001: Unexpected symbol `,', expecting identifier
// Line: 6

public class MonoRuntime
{
	public static void Main (A, B)
	{
	}
}
</string>
    <string>// CS1001: Unexpected symbol `}', expecting identifier
// Line: 6

public class Foo
{
    public event System.Collections.Generic.IList&lt;int&gt;
}</string>
    <string>// CS1001: Unexpected symbol `,', expecting identifier
// Line: 8

static class Converter
{
	static Dictionary&lt;Options, string&gt; options = new Dictionary&lt;Options, string&gt; () 
	{
		{ Options., "I am completed!" },
	};
}</string>
  </Examples>
</ErrorDocumentation>