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

cs0755.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 66c48f348ec549709f3c24f6365a8e0bdb8ce82b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0755: A partial method declaration and partial method implementation must be both an extension method or neither
// Line: 11


public static partial class C
{
	static partial void Foo (this string eType)
	{
	}
	
	static partial void Foo (string value);
}