[mini] Fix test compiling when running !MOBILE
[mono.git] / mcs / errors / cs1540-16.cs
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
4
5 public class Child<T> : Parent where T : Parent
6 {
7         public void Bar (T p)
8         {
9                 p.Foo ();
10         }
11 }