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

cs1104.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4a0f5ed3e27eb3b962ce387717647181454b2182 (plain)
1
2
3
4
5
6
7
8
9
// CS1104: The parameter modifiers `this' and `params' cannot be used altogether
// Line: 6

static class S
{
	static void Foo (params this int[] o)
	{
	}
}