TypeScript/tests/baselines/reference/assignmentRestElementWithErrorSourceType.errors.txt
2015-04-13 17:29:18 -07:00

11 lines
510 B
Plaintext

tests/cases/compiler/assignmentRestElementWithErrorSourceType.ts(2,5): error TS2304: Cannot find name 'c'.
tests/cases/compiler/assignmentRestElementWithErrorSourceType.ts(2,10): error TS2304: Cannot find name 'tupel'.
==== tests/cases/compiler/assignmentRestElementWithErrorSourceType.ts (2 errors) ====
var tuple: [string, number];
[...c] = tupel; // intentionally misspelled
~
!!! error TS2304: Cannot find name 'c'.
~~~~~
!!! error TS2304: Cannot find name 'tupel'.