<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0101</ErrorName>
  <Examples>
    <string>// CS0101: The namespace `global::' already contains a definition for `Test'
// Line: 5
// Compiler options: CS0101-7-2.cs

class Test {}
</string>
    <string>// CS0101: The namespace `N' already contains a definition for `Test&lt;T&gt;'
// Line: 7
// Compiler options: CS0101-9-2.cs

namespace N
{
	class Test&lt;T&gt; {}
}</string>
    <string>// CS0101: The namespace `N' already contains a definition for `C'
// Line: 13

namespace N
{
	public class C
	{
	}
}

namespace N
{
	public class C
	{
	}
}</string>
    <string>// CS0101: The namespace `Test' already contains a definition for `Foo'
// Line: 10

namespace Test
{
	public class Foo
	{
	}
	
	namespace Foo.PP
	{
	}
}
</string>
    <string>// CS0101: The namespace `AA.VV' already contains a definition for `SomeEnum'
// Line: 10
using System;

namespace AA {
	namespace VV {
		public enum SomeEnum {
			Something1,
			Something2
		}

		public enum SomeEnum {
			Dog,
			Fish,
			Cat
		}
	}
}
</string>
    <string>// CS0101: The namespace `Test' already contains a definition for `Foo'
// Line: 10

namespace Test
{
	public class Foo
	{
	}
	
	namespace Foo
	{
	}
}
</string>
    <string>// CS0101: The namespace `global::' already contains a definition for `Test'
// Line: 6

class Test {}

namespace Test
{
}
</string>
    <string>// CS0101: The namespace `global::' already contains a definition for `SomeEnum'
// Line: 10
using System;

public enum SomeEnum {
	Something1,
	Something2
}

public enum SomeEnum {
	Dog,
	Fish,
	Cat
}

public class DupeEnumTest {
	public static void Main(string[] args) {
		SomeEnum someEnum = SomeEnum.Dog;
		Console.WriteLine("SomeEnum Result: " + someEnum.ToString
());
	}
}





        
</string>
    <string>// CS0101: The namespace `global::' already contains a definition for `I&lt;T&gt;'
// Line: 8

interface I&lt;T&gt;
{
}

partial class I&lt;T&gt;
{
}
</string>
  </Examples>
</ErrorDocumentation>