[System] Remove any CFNetwork usage from the watchOS profile. Fixes #45847.
[mono.git] / mcs / errors / cs0122-9.cs
index 76febf7f40ee70f70134606f82a24f3062f0680e..4a51db38df3a73d39dc985393463eb152903679d 100644 (file)
@@ -1,3 +1,6 @@
+// CS0122: `X.a.get' is inaccessible due to its protection level
+// Line: 16
+
 public class X {
        private int a {
                get {
@@ -6,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 ()
-       {
-       }
 }
-
-