2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1729-14.cs
blob37257eaee2063d472246b5e93c0c623cf2e09759
1 // CS1729: The type `TestCases.ClassWithNonPublicConstructor' does not contain a constructor that takes `0' arguments
2 // Line: 10
4 namespace TestCases
6 public class GmcsCtorBug
8 public static void Test ()
10 new ClassWithNonPublicConstructor ();
14 public class ClassWithNonPublicConstructor
16 protected ClassWithNonPublicConstructor (int p)