TypeScript/tests/baselines/reference/typeOfOperator1.errors.txt
2014-09-11 16:11:08 -07:00

6 lines
218 B
Plaintext

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