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

cs0751.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 40e6eb54ab382a3846aeeaaad0f04accda5ee8f8 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0751: A partial method must be declared within a partial class or partial struct
// Line: 7


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