cleol
[mcs.git] / errors / cs1007.cs
blobaf0d55bd7a93275e9d795c51bbdbd5aba3778e4b
1 // cs01007.cs: Property accessor already defined
2 // Line: 10
4 public class C
6 public int Prop {
7 get {
8 return 0;
10 get {
11 return 0;