TypeScript/tests/baselines/reference/anyAsGenericFunctionCall.js

26 lines
563 B
TypeScript

//// [anyAsGenericFunctionCall.ts]
// any is considered an untyped function call
// can be called except with type arguments which is an error
var x: any;
var a = x<number>();
var b = x<string>('hello');
class C { foo: string; }
var c = x<C>(x);
var d = x<any>(x);
//// [anyAsGenericFunctionCall.js]
// any is considered an untyped function call
// can be called except with type arguments which is an error
var x;
var a = x();
var b = x('hello');
var C = (function () {
function C() {
}
return C;
})();
var c = x(x);
var d = x(x);