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

cs0750.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3810f4169d4dc4a3031b6e5b4cb4517b9401c2f6 (plain)
1
2
3
4
5
6
7
8
9
// CS0750: A partial method cannot define access modifier or any of abstract, extern, new, override, sealed, or virtual modifiers
// Line: 6

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