<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0436</ErrorName>
  <Examples>
    <string>// CS0436: The type `System.Runtime.CompilerServices.RuntimeHelpers' conflicts with the imported type of same name'. Ignoring the imported type definition
// Line: 20
// Compiler options: -warn:2 -warnaserror

using System.Runtime.CompilerServices;

namespace System.Runtime.CompilerServices
{
	public class RuntimeHelpers
	{
		public static void SomeMethod ()
		{
		}
	}
}


class C
{
	public static void Main ()
	{
		RuntimeHelpers.SomeMethod (null);
	}
}
</string>
    <string>// CS0436: The type `System.Console' conflicts with the imported type of same name'. 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>