<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0132</ErrorName>
  <Examples>
    <string>// CS0132: `Foo.Foo(int)': The static constructor must be parameterless
// Line: 10

class Foo
{
	static Foo ()
	{
	}

	static Foo (int x)
	{
	}

	static void Main ()
	{
	}
}
</string>
    <string>// CS0132: `X.X(int)': The static constructor must be parameterless
// Line: 4
class X {
	static X (int x)
	{
	}
}
</string>
    <string>// CS0132: `X.X(int)': The static constructor must be parameterless
// Line: 5
class X {
    static int ii = 55;
	static X (int x)
	{
	}
}
</string>
  </Examples>
</ErrorDocumentation>