TypeScript/tests/baselines/reference/arrayTypeOfFunctionTypes.errors.txt
2014-07-12 17:30:19 -07:00

21 lines
653 B
Plaintext

==== tests/cases/conformance/types/specifyingTypes/typeLiterals/arrayTypeOfFunctionTypes.ts (2 errors) ====
// valid uses of arrays of function types
var x: () => string[];
var r = x[1];
var r2 = r();
var r2b = new r();
var x2: { (): string }[];
var r3 = x2[1];
var r4 = r3();
var r4b = new r3(); // error
~~~~~~~~
!!! Only a void function can be called with the 'new' keyword.
var x3: Array<() => string>;
var r5 = x2[1];
var r6 = r5();
var r6b = new r5(); // error
~~~~~~~~
!!! Only a void function can be called with the 'new' keyword.