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

cs1929.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4679492a1fe59334fbf36671d34b2d0d0ca6aa02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS1929: Type `int' does not contain a member `Check' and the best extension method overload `C.Check(this string)' requires an instance of type `string'
// Line: 12

static class C
{
	public static void Check (this string s)
	{
	}

	static void Main ()
	{
		1.Check ();
	}
}