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

9 lines
476 B
Text
Raw Normal View History

tests/cases/compiler/conditionalExpression1.ts(1,5): error TS2323: Type 'string | number' is not assignable to type 'boolean'.
Type 'string' is not assignable to type 'boolean'.
==== tests/cases/compiler/conditionalExpression1.ts (1 errors) ====
2014-07-13 01:04:16 +02:00
var x: boolean = (true ? 1 : ""); // should be an error
~
!!! error TS2323: Type 'string | number' is not assignable to type 'boolean'.
!!! error TS2323: Type 'string' is not assignable to type 'boolean'.