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

4 lines
100 B
TypeScript

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