// CS0113: A member `X.Y()' marked as override cannot be marked as new or virtual
// Line: 8

class X {
	public virtual override void Y () {}
}