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

cs1007.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: af0d55bd7a93275e9d795c51bbdbd5aba3778e4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs01007.cs: Property accessor already defined
// Line: 10

public class C
{
	public int Prop {
		get {
			return 0;
		}
		get {
			return 0;
		}
	}
}