TypeScript/tests/baselines/reference/parserAmbiguityWithBinaryOperator3.js

13 lines
236 B
TypeScript
Raw Normal View History

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