<?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>CS1001</ErrorName>
  <Examples>
    <string>// CS1001: Missing identifier to pre-processor directive
// Line: 5

#if false
	#define
#endif
</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 B&lt;T&gt;
{
	T Foo (T)
	{
	}
}
</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>
  </Examples>
</ErrorDocumentation>