TypeScript/tests/baselines/reference/commaOperatorInvalidAssignmentType.errors.txt
2014-11-05 12:26:03 -08:00

39 lines
2.1 KiB
Plaintext

tests/cases/conformance/expressions/commaOperator/commaOperatorInvalidAssignmentType.ts(10,1): error TS2322: Type 'string' is not assignable to type 'boolean'.
tests/cases/conformance/expressions/commaOperator/commaOperatorInvalidAssignmentType.ts(11,1): error TS2322: Type 'number' is not assignable to type 'boolean'.
tests/cases/conformance/expressions/commaOperator/commaOperatorInvalidAssignmentType.ts(13,1): error TS2322: Type 'boolean' is not assignable to type 'number'.
tests/cases/conformance/expressions/commaOperator/commaOperatorInvalidAssignmentType.ts(14,1): error TS2322: Type 'string' is not assignable to type 'number'.
tests/cases/conformance/expressions/commaOperator/commaOperatorInvalidAssignmentType.ts(16,1): error TS2322: Type 'boolean' is not assignable to type 'string'.
tests/cases/conformance/expressions/commaOperator/commaOperatorInvalidAssignmentType.ts(17,1): error TS2322: Type 'number' is not assignable to type 'string'.
==== tests/cases/conformance/expressions/commaOperator/commaOperatorInvalidAssignmentType.ts (6 errors) ====
var BOOLEAN: boolean;
var NUMBER: number;
var STRING: string;
var resultIsBoolean: boolean
var resultIsNumber: number
var resultIsString: string
//Expect errors when the results type is different form the second operand
resultIsBoolean = (BOOLEAN, STRING);
~~~~~~~~~~~~~~~
!!! error TS2322: Type 'string' is not assignable to type 'boolean'.
resultIsBoolean = (BOOLEAN, NUMBER);
~~~~~~~~~~~~~~~
!!! error TS2322: Type 'number' is not assignable to type 'boolean'.
resultIsNumber = (NUMBER, BOOLEAN);
~~~~~~~~~~~~~~
!!! error TS2322: Type 'boolean' is not assignable to type 'number'.
resultIsNumber = (NUMBER, STRING);
~~~~~~~~~~~~~~
!!! error TS2322: Type 'string' is not assignable to type 'number'.
resultIsString = (STRING, BOOLEAN);
~~~~~~~~~~~~~~
!!! error TS2322: Type 'boolean' is not assignable to type 'string'.
resultIsString = (STRING, NUMBER);
~~~~~~~~~~~~~~
!!! error TS2322: Type 'number' is not assignable to type 'string'.