TypeScript/tests/baselines/reference/genericArrayMethods1.errors.txt
2014-11-05 12:26:03 -08:00

10 lines
469 B
Plaintext

tests/cases/compiler/genericArrayMethods1.ts(1,5): error TS2322: Type 'number[]' is not assignable to type 'string[]'.
Type 'number' is not assignable to type 'string'.
==== tests/cases/compiler/genericArrayMethods1.ts (1 errors) ====
var x:string[] = [0,1].slice(0); // this should be an error
~
!!! error TS2322: Type 'number[]' is not assignable to type 'string[]'.
!!! error TS2322: Type 'number' is not assignable to type 'string'.