summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1100.cs
blob: 35e3c294c39fbfd54b514c537cdc1651221a9148 (plain)
1
2
3
4
5
6
7
8
9
// CS1100: The parameter modifier `this' can only be used on the first parameter
// Line: 6

static class S
{
	static void Foo (bool b, this string s)
	{
	}
}