1 // CS1729: The type `TestCases.ClassWithNonPublicConstructor' does not contain a constructor that takes `0' arguments
6 public class GmcsCtorBug
8 public static void Test ()
10 new ClassWithNonPublicConstructor ();
14 public class ClassWithNonPublicConstructor
16 protected ClassWithNonPublicConstructor (int p
)