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

6 lines
204 B
Plaintext

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