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

6 lines
291 B
Plaintext

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