TypeScript/tests/baselines/reference/genericCallWithNonGenericArgs1.js

10 lines
157 B
JavaScript
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) {
}
f(null);