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

cs0501.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1448d79e91e7199361188f5707e9fe185736b66a (plain)
1
2
3
4
5
// cs0501.cs: `Class.X' must declare a body because it is not marked abstract or extern
// Line: 4
class Class {
	virtual public void X ();
}