TypeScript/tests/cases/fourslash/goToImplementationInterface_08.ts
2016-09-13 17:33:49 -07:00

21 lines
447 B
TypeScript

/// <reference path='fourslash.ts'/>
// Should not hang on inheritance loops
//// interface Base {
//// hello (): void;
//// }
////
//// interface A extends Base {}
//// interface B extends C, A {}
//// interface C extends B, A {}
////
//// class X implements B {
//// [|hello() {}|]
//// }
////
//// function someFunction(d : A) {
//// d.he/*function_call*/llo();
//// }
verify.allRangesAppearInImplementationList("function_call");