Wed Oct 17 13:24:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
[mono.git] / mcs / errors / cs0082.cs
1 // CS0082: A member `Test.get_Value()' is already reserved
2 // Line: 7
3
4 public class Test
5 {
6         public string get_Value () { return null; }
7         public string Value {
8                 get { }
9         }
10 }