1/// <reference path='fourslash.ts' /> 2 3//// abstract class A { 4//// private abstract x: number; 5//// m() { this.x; } // Avoid unused private 6//// } 7//// 8//// class C extends A {[| |]} 9 10// We don't know how to fix this problem. We can: 11// 1) Make x protected, and then insert. 12// 2) Make x private, and then insert. 13// 3) Make x not abstract. 14// So we offer no fixes. 15verify.not.codeFixAvailable(); 16