9 lines
158 B
C#
Raw Permalink Normal View History

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