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

gcs0267.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2e408a7fa5cc3860e518051a822e6afc5c672398 (plain)
1
2
3
4
5
6
7
8
9
// CS0267: The `partial' modifier can be used only immediately before `class', `struct', `interface', or `void' keyword
// Line: 6

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