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

cs0759.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b2c6ebbd19a3f628a89b3f29b0f2eebc73888642 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0759: A partial method `C.Foo()' implementation is missing a partial method declaration
// Line: 7


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