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

6 lines
291 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/conditionalExpression1.ts (2 errors) ====
var x: boolean = (true ? 1 : ""); // should be an error
~
2014-07-13 01:04:16 +02:00
!!! Type '{}' is not assignable to type 'boolean'.
~~~~~~~~~~~~~
!!! No best common type exists between 'number' and 'string'.