TypeScript/tests/baselines/reference/reverseInferenceInContextualInstantiation.js

11 lines
316 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [reverseInferenceInContextualInstantiation.ts]
function compare<T>(a: T, b: T): number { return 0; }
var x: number[];
x.sort(compare); // Error, but shouldn't be
//// [reverseInferenceInContextualInstantiation.js]
function compare(a, b) { return 0; }
2014-07-13 01:04:16 +02:00
var x;
x.sort(compare); // Error, but shouldn't be