fix ET tests for 4.0
[mcs.git] / errors / cs0122-17.cs
blob85eb251085791743a5ee618e73d199452f5c4afd
1 // cs0122-17.cs: `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;