TypeScript/tests/cases/compiler/assignmentNestedInLiterals.ts
Nathan Shively-Sanders a46cb033db Add for-of test case
2017-02-08 16:14:36 -08:00

11 lines
175 B
TypeScript

// @noImplicitAny: true
var target, x, y;
target = [x = 1, y = x];
var aegis, a, b;
aegis = { x: a = 1, y: b = a };
var kowloona, c, d;
for (kowloona of [c = 1, d = c]) {
}