summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug601393.js
blob: db14f473a71e6c08ee984b0fd6b2ff0fef5a6d6f (plain)
1
2
3
4
5
6
7
8
9
// Binary: cache/js-dbg-64-0230a9e80c1f-linux
// Flags: -m
//
var code = "(function(){ function eval(){} function eval(){} ";
for (var i = 0; i < 2048; ++i) {
	code += " try{}catch(e){}";
}
code += " })()"
eval(code);