<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0515</ErrorName>
  <Examples>
    <string>// CS0515: `N.G&lt;T&gt;.G()': static constructor cannot have an access modifier
// Line: 7

namespace N
{
	class G&lt;T&gt; {
		public static G ()
		{
		}
	}
}
</string>
    <string>// CS0515: `X.X()': static constructor cannot have an access modifier
// Line: 5

class X {
	public static X ()
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>