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

cs0503.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e8e8e0485680c185609041fb7c251eea8122f5f4 (plain)
1
2
3
4
5
// cs0503.cs: The abstract method `Class.X' cannot be marked virtual
// Line: 4
abstract class Class {
	virtual abstract public void X ();
}