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: e3dcf75fefc8bbdccd2e1d52363794ebd071824b (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

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