**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs0111-10.cs
blobf0af4988e8be21374bf8730cec04e72d8e87da46
1 // cs0111.cs: Class 'SampleClass' already defines a member called 'get_Value' with the same parameter types
2 // Line: 7
4 public class Test
6 public string get_Value () { return null; }
7 public string Value {
8 get { }