[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0122-17.cs
bloba483b292d671e4c2ca019955e83ad29655a2e68a
1 // CS0122: `A.output' is inaccessible due to its protection level
2 // Line: 12
4 public class A {
5 private string output;
8 public class B : A {
9 public void Test() {
10 switch ("a") {
11 case "1":
12 output.Replace("a", "b");
13 break;