// CS0500: `X.B()' cannot declare a body because it is marked abstract
// Line: 5

abstract class X {
	public abstract void B () {
	}
}