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

6 lines
204 B
Plaintext
Raw Normal View History

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-07-13 01:04:16 +02:00
!!! Type 'string' is not assignable to type 'number'.