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

9 lines
333 B
Plaintext
Raw Normal View History

2014-11-05 21:26:03 +01:00
tests/cases/compiler/typeOfOperator1.ts(3,5): error TS2322: Type 'string' is not assignable to type 'number'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/typeOfOperator1.ts (1 errors) ====
var x = 1;
var y: string = typeof x;
var z: number = typeof x;
~
2014-11-05 21:26:03 +01:00
!!! error TS2322: Type 'string' is not assignable to type 'number'.