TypeScript/tests/baselines/reference/identityForSignaturesWithTypeParametersSwitched.js

8 lines
201 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [identityForSignaturesWithTypeParametersSwitched.ts]
var f: <T, U>(x: T, y: U) => T;
var f: <T, U>(x: U, y: T) => U;
//// [identityForSignaturesWithTypeParametersSwitched.js]
var f;
var f;