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

cs1743.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d5f806dd5992d6a2b9cb9d7800aa01549f898ffb (plain)
1
2
3
4
5
6
7
8
9
// CS1743: Cannot specify a default value for the `this' parameter
// Line: 6

static class C
{
	public static void Test (this C a = null)
	{
	}
}