[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git] / mcs / errors / cs1540-16.cs
blob15165aab369c2ba79ec99af350e14ec085d70da4
1 // CS1540: Cannot access protected member `Parent.Foo()' via a qualifier of type `T'. The qualifier must be of type `Child<T>' or derived from it
2 // Line: 9
3 // Compiler options: -r:CS1540-15-lib.dll
5 public class Child<T> : Parent where T : Parent
7 public void Bar (T p)
9 p.Foo ();