summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0501.cs
blob: 6e5f3177cf622f39f2f3eca2228cf6d95e3633f5 (plain)
1
2
3
4
5
6
// CS0501: `Class.X()' must have a body because it is not marked abstract, extern, or partial
// Line: 5

class Class {
	virtual public void X ();
}