<?xml version="1.0" encoding="us-ascii"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0105</ErrorName>
  <Examples>
    <string>// cs0105.cs: 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>
  </Examples>
</ErrorDocumentation>