[mini] Fix test compiling when running !MOBILE
[mono.git] / mcs / errors / cs0082-5.cs
1 // CS0082: A member `Test.get_Value()' is already reserved
2 // Line: 7
3
4 public partial class Test
5 {
6         public string get_Value () { return null; }
7 }
8
9 public partial class Test
10 {
11         public string Value {
12                 get { }
13         }
14 }