<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0105</ErrorName>
  <Examples>
    <string>// CS0105: The using directive for `N.M' appeared previously in this namespace
// Line: 8
// Compiler options: -warnaserror -warn:3

namespace N
{
	using M;
	using N.M;
	
	namespace M
	{
	}
}
</string>
    <string>// CS0105: The using directive for `System' appeared previously in this namespace
// Line: 6
// Compiler options: -warnaserror -warn:3

using System;
using global::System;
</string>
    <string>// CS0105: The using directive for `System' appeared previously in this namespace
// Line: 6
// Compiler options: -warnaserror -warn:3

using System;
using System;

public class X
{
	static int Main () 
	{
		int a=5;
		return a;
	}
}
</string>
    <string>// CS0105: The using directive for `System.Console' appeared previously in this namespace
// Line: 6
// Compiler options: -warnaserror -warn:3

using static System.Console;
using static System.Console;</string>
  </Examples>
</ErrorDocumentation>