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: 85c42b9d421e52bcdb5f4c2c28df9e3261c12b1a (plain)
1
2
3
4
5
// CS0503: The abstract method `Class.X()' cannot be marked virtual
// Line: 4
abstract class Class {
	virtual abstract public void X ();
}