TypeScript/tests/baselines/reference/checkJsFiles2.errors.txt
2017-03-29 08:52:00 -07:00

9 lines
266 B
Plaintext

tests/cases/compiler/a.js(3,1): error TS2322: Type '0' is not assignable to type 'string'.
==== tests/cases/compiler/a.js (1 errors) ====
// @ts-check
var x = "string";
x = 0;
~
!!! error TS2322: Type '0' is not assignable to type 'string'.