fix
[mono.git] / mcs / errors / cs0111-12.cs
1 // cs111.cs : Class 'Test' already defines a member called 'get_Value' with the same parameter types
2 // Line : 6
3
4 public class Test
5 {
6         public string Value {
7                 set { }
8         }
9         public string get_Value () { return null; }
10 }