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: e1b3a417d7b922d1712a4fdff3afacb590a4eca7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS01007: Property accessor already defined
// Line: 10

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