TypeScript/tests/baselines/reference/parserObjectCreation1.errors.txt
2014-09-11 16:11:08 -07:00

5 lines
319 B
Plaintext

==== tests/cases/conformance/parser/ecmascript5/Generics/parserObjectCreation1.ts (1 errors) ====
var autoToken: number[] = new Array<number[]>(1);
~~~~~~~~~
!!! error TS2322: Type 'number[][]' is not assignable to type 'number[]':
!!! error TS2322: Type 'number[]' is not assignable to type 'number'.