Merge pull request #1971 from angeloc/master
[mono.git] / mcs / errors / cs0205-3.cs
index 63836aa4547647bf6fb187d2eef5009bd986d7c7..63a9216c8223974df64dd190a3856d67952f15dc 100644 (file)
@@ -1,22 +1,22 @@
-// cs0205-3.cs: Cannot call an abstract base member `A.Foobar'
-// Line: 15
+// CS0205: Cannot call an abstract base member `A.Foobar.get'
+// Line: 18
 // Compiler options: -r:CS0205-3-lib.dll
 
 using System;
 
 public class B: A1
 {
-        protected override int Foobar  {
+       protected override int Foobar  {
                get {
-                       return base.Foobar;
+                       return base.Foobar;
                }
-        }
+       }
 
-        static void Main ()
-        {
-                B b = new B ();
-                if (b.Foobar == 1)
-                       ;
-        }
+       static void Main ()
+       {
+               B b = new B ();
+               if (b.Foobar == 1) {
+               }
+       }
 }