TypeScript/tests/cases/fourslash/genericInterfaceWithInheritanceEdit1.ts

19 lines
460 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
/// <reference path='fourslash.ts'/>
////interface ChainedObject<T> {
//// values(): ChainedArray<any>;
//// pairs(): ChainedArray<any[]>;
//// extend(...sources: any[]): ChainedObject<T>;
////
//// value(): T;
////}
////interface ChainedArray<T> extends ChainedObject<Array<T>> {
////
2014-07-13 01:04:16 +02:00
//// extend(...sources: any[]): ChainedArray<T>;
////}
//// /*1*/
verify.noErrors();
2014-07-13 01:04:16 +02:00
goTo.marker('1');
edit.insert(' ');
verify.noErrors();