Add glib to the list of packages with debugging symbols.
[mono.git] / mcs / errors / cs0122-9.cs
index cd80d6fb0ed0c74f7410e4110e47157f448f5d8c..4a51db38df3a73d39dc985393463eb152903679d 100644 (file)
@@ -1,5 +1,5 @@
-// cs0122-9.cs: `X.a' is inaccessible due to its protection level
-// Line: 11
+// CS0122: `X.a.get' is inaccessible due to its protection level
+// Line: 16
 
 public class X {
        private int a {
@@ -9,18 +9,12 @@ public class X {
        }
 }
 
-internal class Y : X {
-
+internal class Y : X
+{
        int D (X x)
        {
                if (x.a == 2)
                        return 0;
                return 0;
        }
-
-       static void Main ()
-       {
-       }
 }
-
-