blob: b6fac0243b7537ecbf51bd7d22d373ec13b634d1 [file] [log] [blame]
//@ runDefault
// This test should not crash.
function foo() {
"use strict";
return --arguments["callee"];
};
function test() {
for (var i = 0; i < 10000; i++) {
try {
foo();
} catch(e) {
}
}
}
test();