Remove code moved to shared partition
[mono-project.git] / mcs / errors / cs1007.cs
blobe1b3a417d7b922d1712a4fdff3afacb590a4eca7
1 // CS01007: 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;