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

test-493.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b427f77f889b0ead2e10929c4778136aaff139bb (plain)
1
2
3
4
5
6
7
8
9
10
11
class A {
	protected int f { get { return 1; } }
}

class B : A {
         int bar () { return new C().f; } 
   }
   
class C : B {
	static void Main () {}
}