summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1106-2.cs
blob: 0f2d5d16d8ea45a535b24baacad1e438a89e383d (plain)
1
2
3
4
5
6
7
8
9
10
// CS1106: `S<T>.Foo(this string)': Extension methods must be defined in a non-generic static class
// Line: 6


static class S<T>
{
	static void Foo (this string s)
	{
	}
}