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: ef804e1c5c7e209f751e565c74892faf8dd2f01c (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 {
	public static void Main () {}
}