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

6 lines
264 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/genericArrayMethods1.ts (1 errors) ====
var x:string[] = [0,1].slice(0); // this should be an error
~
2014-07-13 01:04:16 +02:00
!!! Type 'number[]' is not assignable to type 'string[]':
!!! Type 'number' is not assignable to type 'string'.