// 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)
	{
	}
}