<?xml version="1.0" encoding="euc-jp"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0436</ErrorName>
  <Examples>
    <string>// CS0436: The type `System.Console' conflicts with the imported type `System.Console'. Ignoring the imported type definition
// Line: 16
// Compiler options: -warn:2 -warnaserror

namespace System
{
    public class Console
    {
    }
}

public class C
{
    public static void Main ()
    {
        new System.Console ();
    }
}
</string>
  </Examples>
</ErrorDocumentation>