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

cs1066.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 128684e639661ed2c92988d69c00e5fe36ba30ba (plain)
1
2
3
4
5
6
7
8
9
10
// CS1066: The default value specified for optional parameter `i' will never be used
// Line: 6
// Compiler options: -warnaserror -langversion:future

public class C
{
	public int this [int i = 1] { 
		set {}
	}
}