Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0111-10.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f0af4988e8be21374bf8730cec04e72d8e87da46 (plain)
1
2
3
4
5
6
7
8
9
10
// cs0111.cs: Class 'SampleClass' already defines a member called 'get_Value' with the same parameter types
// Line: 7

public class Test
{
	public string get_Value () { return null; }
	public string Value {
		get { }
	}
}