TypeScript/tests/cases/compiler/identityForSignaturesWithTypeParametersSwitched.ts
2014-07-12 17:30:19 -07:00

2 lines
63 B
TypeScript

var f: <T, U>(x: T, y: U) => T;
var f: <T, U>(x: U, y: T) => U;