11 lines
161 B
C#
Raw Normal View History

// CS1106: `S.Foo(this string)': Extension methods must be defined in a non-generic static class
// Line: 6
class S
{
static void Foo (this string s)
{
}
}