Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1109.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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)
		{
		}
	}
}