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

9 lines
532 B
Plaintext
Raw Normal View History

2014-11-05 21:26:03 +01:00
tests/cases/conformance/parser/ecmascript5/Generics/parserObjectCreation1.ts(1,5): error TS2322: Type 'number[][]' is not assignable to type 'number[]'.
Type 'number[]' is not assignable to type 'number'.
2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/parser/ecmascript5/Generics/parserObjectCreation1.ts (1 errors) ====
var autoToken: number[] = new Array<number[]>(1);
~~~~~~~~~
2014-11-05 21:26:03 +01:00
!!! error TS2322: Type 'number[][]' is not assignable to type 'number[]'.
!!! error TS2322: Type 'number[]' is not assignable to type 'number'.