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

cs0111-17.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 57b1d2a1e49c925aab032e19fe8eb4a77c19c577 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs0111-17.cs: `Test.get_Value()' is already defined. Rename this member or use different parameter types
// Line: 7

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

public partial class Test
{
	public string Value {
		get { }
	}
}