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

22 lines
975 B
Plaintext
Raw Normal View History

2014-11-05 21:26:03 +01:00
tests/cases/conformance/expressions/commaOperator/commaOperatorOtherInvalidOperation.ts(6,5): error TS2322: Type 'string' is not assignable to type 'number'.
tests/cases/conformance/expressions/commaOperator/commaOperatorOtherInvalidOperation.ts(12,9): error TS2322: Type 'T2' is not assignable to type 'T1'.
2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/expressions/commaOperator/commaOperatorOtherInvalidOperation.ts (2 errors) ====
//Expect to have compiler errors
//Comma operator in fuction arguments and return
function foo(x: number, y: string) {
return x, y;
}
var resultIsString: number = foo(1, "123"); //error here
~~~~~~~~~~~~~~
2014-11-05 21:26:03 +01:00
!!! error TS2322: Type 'string' is not assignable to type 'number'.
2014-07-13 01:04:16 +02:00
//TypeParameters
function foo1<T1, T2>() {
var x: T1;
var y: T2;
var result: T1 = (x, y); //error here
~~~~~~
2014-11-05 21:26:03 +01:00
!!! error TS2322: Type 'T2' is not assignable to type 'T1'.
2014-07-13 01:04:16 +02:00
}