TypeScript/tests/baselines/reference/parserAmbiguityWithBinaryOperator4.js

12 lines
217 B
TypeScript
Raw Normal View History

2014-12-09 00:38:35 +01:00
//// [parserAmbiguityWithBinaryOperator4.ts]
function g() {
var a, b, c;
if (a<b, b>(c + 1)) { }
}
//// [parserAmbiguityWithBinaryOperator4.js]
function g() {
var a, b, c;
if (a(c + 1)) { }
2014-12-09 00:38:35 +01:00
}