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

6 lines
238 B
TypeScript

var x = {
a: < <T>(x: T) => T > ((x: any) => 1),
b: <T>(x: T) => { x }
}
x.a<string>(1); // bug was that this caused 'Could not find symbol T' on return type T in the type assertion on x.a's definition
x.b<string>(); // error