<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0437</ErrorName>
  <Examples>
    <string>// CS0437: The type `System' conflicts with the imported namespace `System'. Using the definition found in the source file
// Line: 9
// Compiler options: -warnaserror

enum System { A }

class X
{
	void Method (System arg)
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>