New test.
[mono.git] / mcs / errors / cs0132-2.cs
1 // cs0132.-2cs: `X.X(int)': The static constructor must be parameterless
2 // Line: 5
3 class X {\r
4     static int ii = 55;
5         static X (int x)
6         {
7         }
8 }