blob: e583f772f24ce8a6ad95a7b76e333d6785c16972 [file] [log] [blame]
function test() {
var str = "";
for (var item of "foo")
str += item;
return str === "foo";
}
if (!test())
throw new Error("Test failed");