==== tests/cases/compiler/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
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
!!! commaOperatorOtherInvalidOperation.ts(6,5): error TS2011: Cannot convert 'string' to 'number'.
    
    //TypeParameters
    function foo1<T1, T2>() {
        var x: T1;
        var y: T2;
        var result: T1 = (x, y); //error here
            ~~~~~~~~~~~~~~~~~~~
!!! commaOperatorOtherInvalidOperation.ts(12,9): error TS2011: Cannot convert 'T2' to 'T1'.
    }