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

cs0316.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 691b75f108de849cf42f073bfd6ff4f3c679433a (plain)
1
2
3
4
5
6
7
8
9
// CS0316: The parameter name `value' conflicts with a compiler generated name
// Line: 6

class C
{
	int this [string value]	{
		set { }
	}
}