summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1540-10.cs
blob: 3ab254acd775bc80a2690169db469d22fce94579 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// CS1540: Cannot access protected member `Test.A.Property' via a qualifier of type `Test.A'. The qualifier must be of type `Test.B.C' or derived from it
// Line: 19

namespace Test
{
    public class A
    {
        protected int Property {
            get { return 0; }
        }
    }
 
    public class B : A
    {
        private sealed class C
        {
            public C (A a)
            {
                int test = a.Property;
                test++;
            }
        }
    } 
}