blob: b2940b67140828a27271a6f12247ea76a0859a50 [file] [log] [blame]
var hits = 0;
for (var j = 0; j < 9; ++j) {
try {
(function() {
(function() {
eval("x")
let x
})()
})()
} catch (e) {
hits++;
}
}
assertEq(hits, 9);