/// ////interface Comparable { //// compareTo(other: T): T; ////} ////interface Comparer { //// >(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);