TypeScript/tests/baselines/reference/genericFunctions0.js

16 lines
321 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [genericFunctions0.ts]
function foo<T > (x: T) { return x; }
var x = foo<number>(5); // 'x' should be number
//// [genericFunctions0.js]
function foo(x) {
return x;
}
var x = foo(5); // 'x' should be number
2014-07-13 01:04:16 +02:00
//// [genericFunctions0.d.ts]
2014-07-12 01:36:06 +02:00
declare function foo<T>(x: T): T;
declare var x: number;