TypeScript/tests/cases/fourslash/contextuallyTypedFunctionExpressionGeneric1.ts

23 lines
568 B
TypeScript

/// <reference path='fourslash.ts'/>
////interface Comparable<T> {
//// compareTo(other: T): T;
////}
////interface Comparer {
//// <T extends Comparable<T>>(x: T, y: T): T;
////}
////var max2: Comparer = (x/*1*/x, y/*2*/y) => { return x/*3*/x.compareTo(y/*4*/y) };
goTo.marker('1');
verify.quickInfoIs('(parameter) xx: any', null);
goTo.marker('2');
verify.quickInfoIs('(parameter) yy: any', null);
goTo.marker('3');
verify.quickInfoIs('(parameter) xx: any', null);
goTo.marker('4');
verify.quickInfoIs('(parameter) yy: any', null);