summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1109.cs
blob: 69b824588e1eb1eb95a464530a80caf7bae3bd1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS1109: `C.S.Foo(this string)': Extension methods cannot be defined in a nested class
// Line: 8


class C
{
	static class S
	{
		static void Foo (this string s)
		{
		}
	}
}