TypeScript/tests/baselines/reference/anyAsGenericFunctionCall.errors.txt

19 lines
701 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/types/any/anyAsGenericFunctionCall.ts (4 errors) ====
// 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>();
~~~~~~~~~~~
!!! Untyped function calls may not accept type arguments.
var b = x<string>('hello');
~~~~~~~~~~~~~~~~~~
!!! Untyped function calls may not accept type arguments.
class C { foo: string; }
var c = x<C>(x);
~~~~~~~
!!! Untyped function calls may not accept type arguments.
var d = x<any>(x);
~~~~~~~~~
!!! Untyped function calls may not accept type arguments.