Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1540-10.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 87c17e3338d033d6cb249dd8f91fa83cb889ff83 (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++;
            }
        }
    } 
}