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

test-749-lib.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 176fc7e4db8388f076610b116eb103f6149680d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Compiler options: -target:library

public class B : A
{
	public override int Prop {
		get { return 3; }
	}
}

public class A
{
	public virtual int Prop {
		get { return 1; }
		set {}
	}
}