TypeScript/tests/baselines/reference/genericCallWithNonGenericArgs1.js

9 lines
156 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [genericCallWithNonGenericArgs1.ts]
function f<T>(x: any) { }
f<any>(null)
//// [genericCallWithNonGenericArgs1.js]
function f(x) { }
2014-07-13 01:04:16 +02:00
f(null);