[System.Runtime.Remoting] Adds System.Core reference for tests
[mono.git] / mcs / errors / cs0132-2.cs
1 // CS0132: `X.X(int)': The static constructor must be parameterless
2 // Line: 5
3 class X {
4     static int ii = 55;
5         static X (int x)
6         {
7         }
8 }