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

6 lines
No EOL
84 B
TypeScript

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