TypeScript/tests/baselines/reference/anyAsFunctionCall.js

17 lines
397 B
TypeScript

//// [anyAsFunctionCall.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();
var b = x('hello');
var c = x(x);
//// [anyAsFunctionCall.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 = x(x);