blob: 139b80052312235cabd4867a7e0e58f1301c868f [file] [log] [blame]
function test() {
'use strict';
let baz = 1;
for(let baz = 0; false; false) {}
return baz === 1;
}
if (!test())
throw new Error("Test failed");