<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0576</ErrorName>
  <Examples>
    <string>// CS0576: Namespace `Top' contains a definition with same name as alias `T'
// Line: 12

namespace Top
{
	using T = System.Exception;

	namespace T
	{
		class C
		{
			T t;
		}
	}
}
</string>
    <string>// CS0576: Namespace `global::' contains a definition with same name as alias `S'
// Line: 14

using S = System;

public class S
{
}

public class Test
{
	public static void Main()
	{
		S s;
	}
}
</string>
    <string>// CS0576: Namespace `global::' contains a definition with same name as alias `A'
// Line: 12

using A = System;

namespace A.Foo
{
	class X
	{
		public static void Main ()
		{
			A.GG ();
		}
	}
}</string>
  </Examples>
</ErrorDocumentation>