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

6 lines
319 B
Plaintext

==== tests/cases/compiler/conditionalExpression1.ts (2 errors) ====
var x: boolean = (true ? 1 : ""); // should be an error
~
!!! error TS2323: Type '{}' is not assignable to type 'boolean'.
~~~~~~~~~~~~~
!!! error TS2367: No best common type exists between 'number' and 'string'.