[mcs] Allow properties and indexers of by-ref values to be set without setter
[mono.git] / mcs / errors / cs0132.cs
1 // CS0132: `X.X(int)': The static constructor must be parameterless
2 // Line: 4
3 class X {
4         static X (int x)
5         {
6         }
7 }