Reverted
[mono.git] / mcs / errors / cs1540.cs
index 923f70c3d9898a656c44beeb363dc5b7a008f2b3..00dd94f84aef69c3b89505957cc6618914aa78e0 100644 (file)
@@ -1,14 +1,14 @@
-// cs1540.cs: Cannot access protected member `A.n' via a qualifier of type `A'; the qualifier must be of type `B' (or derived from it)
+// cs1540.cs: Cannot access protected member `A.n' via a qualifier of type `A'. The qualifier must be of type `B' or derived from it
 // Line: 14
 
 class A
 {
-        protected int n;
+    protected int n;
 }
 
 class B : A
 {
-        public static void Main ()
+    public static void Main ()
        {
                A b = new A ();
                b.n = 1;