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

9 lines
333 B
Plaintext

tests/cases/compiler/typeOfOperator1.ts(3,5): error TS2322: Type 'string' is not assignable to type 'number'.
==== tests/cases/compiler/typeOfOperator1.ts (1 errors) ====
var x = 1;
var y: string = typeof x;
var z: number = typeof x;
~
!!! error TS2322: Type 'string' is not assignable to type 'number'.