2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / errors / cs0053.cs
index 6a719af89dfaad8c7149af3aaefa16b125022cc7..2a5c453a181444de1b51a722b18e92e7ddafa9a8 100644 (file)
@@ -1,12 +1,13 @@
 // cs0053.cs: Inconsistent accessibility. Property type is less accessible than property.
-// Line: 10
+// Line: 11
 
 using System;
 
 class ErrorCS0053 {
+       public ErrorCS0053 () {}
 }
 
-class Foo {
+public class Foo {
        public ErrorCS0053 Property {
                get { return new ErrorCS0053 (); } 
        }