summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1106.cs
blob: 5786130ab4cb01634e82280f69e1f2ead3a9e20d (plain)
1
2
3
4
5
6
7
8
9
10
// 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)
	{
	}
}