[mcs] Allow properties and indexers of by-ref values to be set without setter
[mono.git] / mcs / errors / cs0143.cs
1 // CS0143: The class `A' has no constructors defined
2 // Line: 9
3 // Compiler options: -r:CS0143-lib.dll
4
5 public class Test
6 {
7         public static void Main ()
8         {
9                 new A ();
10         }
11 }