summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1743.cs
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)
	{
	}
}