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

gcs1112.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6b366abe48ed2eeabe3f95f8fb25bf777122cb41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS1112: Do not use `System.Runtime.CompilerServices.ExtensionAttribute' directly. Use parameter modifier `this' instead
// Line: 8


using System.Runtime.CompilerServices;

static class C
{
	[Extension]
	static void Foo (this string s)
	{
	}
}