(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0111-12.cs
blob2b2a1b71da221b33daef0750e09e3c0e8b43ad53
1 // cs111.cs : Class 'Test' already defines a member called 'get_Value' with the same parameter types
2 // Line : 6
4 public class Test
6 public string Value {
7 set { }
9 public string get_Value () { return null; }