TypeScript/tests/cases/conformance/statements/for-ofStatements/ES5For-of30.ts
2015-03-04 19:35:13 -08:00

6 lines
No EOL
119 B
TypeScript

var a: string, b: number;
var tuple: [number, string] = [2, "3"];
for ([a = 1, b = ""] of tuple) {
a;
b;
}