TypeScript/tests/cases/fourslash/codeFixClassExtendAbstractPrivateProperty.ts
2016-12-14 10:38:00 -08:00

15 lines
376 B
TypeScript

/// <reference path='fourslash.ts' />
//// abstract class A {
//// private abstract x: number;
//// }
////
//// class C extends A {[|
//// |]}
// We don't know how to fix this problem. We can:
// 1) Make x protected, and then insert.
// 2) Make x private, and then insert.
// 3) Make x not abstract.
// So we offer no fixes.
verify.not.codeFixAvailable();