// CS0503: The abstract method `Class.X()' cannot be marked virtual
// Line: 4
abstract class Class {
	virtual abstract public void X ();
}