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

4 lines
108 B
TypeScript

// @declaration: true
function foo<T > (x: T) { return x; }
var x = foo<number>(5); // 'x' should be number