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

10 lines
565 B
Text
Raw Normal View History

tests/cases/compiler/conditionalExpression1.ts(1,5): error TS2323: Type '{}' is not assignable to type 'boolean'.
tests/cases/compiler/conditionalExpression1.ts(1,19): error TS2367: No best common type exists between 'number' and 'string'.
2014-07-13 01:04:16 +02:00
==== 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'.
2014-07-13 01:04:16 +02:00
~~~~~~~~~~~~~
!!! error TS2367: No best common type exists between 'number' and 'string'.