``` ts abstract calss B { abstract getValue() : number; } class C extends B { | // <= expect getValue to show. } ```