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

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


public partial class C
{
	static partial void Foo ()
	{
	}
	
	partial void Foo ();
}