TypeScript/tests/cases/fourslash/codeFixClassImplementClassFunctionVoidInferred.ts
2017-03-12 18:52:38 -07:00

14 lines
222 B
TypeScript

/// <reference path='fourslash.ts' />
//// class A {
//// f() {}
//// }
////
//// class B implements A {[| |]}
verify.rangeAfterCodeFix(`
f(): void{
throw new Error("Method not implemented.");
}
`);