copying the latest Sys.Web.Services from trunk.
[mono.git] / mcs / errors / cs0111-10.cs
1 // cs0111.cs: Class 'SampleClass' already defines a member called 'get_Value' with the same parameter types
2 // Line: 7
3
4 public class Test
5 {
6         public string get_Value () { return null; }
7         public string Value {
8                 get { }
9         }
10 }