Merge pull request #5002 from BrzVlad/feature-sgen-modes
[mono.git] / mcs / errors / cs1540-15.cs
1 // CS1540: Cannot access protected member `Parent.Foo()' via a qualifier of type `Parent'. The qualifier must be of type `Child' or derived from it
2 // Line: 8
3 // Compiler options: -r:CS1540-15-lib.dll
4
5 public class Child : Parent
6 {
7         public void Bar (Parent p)
8         {
9                 p.Foo ();
10         }
11 }