for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git] / mcs / errors / cs0082-5.cs
bloba90fa8cab96cc0590c9a758d12c54a845a1f4ee0
1 // CS0082: A member `Test.get_Value()' is already reserved
2 // Line: 7
4 public partial class Test
6 public string get_Value () { return null; }
9 public partial class Test
11 public string Value {
12 get { }