[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git] / mcs / errors / cs1540.cs
blobf60ce56a7f32c9ecf10aea94a704840f62f84580
1 // CS1540: Cannot access protected member `A.n' via a qualifier of type `A'. The qualifier must be of type `B' or derived from it
2 // Line: 14
4 class A
6 protected int n;
9 class B : A
11 public static void Main ()
13 A b = new A ();
14 b.n = 1;