* ecore.cs (Expression.Error_ValueCannotBeConverted): Add special
[mono.git] / mcs / errors / cs0132.cs
1 // cs0132.cs: `X.X(int)': The static constructor must be parameterless
2 // Line: 4
3 class X {
4         static X (int x)
5         {
6         }
7 }