summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug867946.js
blob: a673966f4276cc9a04fbc0ab5a676d61626d5348 (plain)
1
2
3
4
5
6
7
// |jit-test| error: InternalError: too much recursion
b = {};
b.__proto__ = evalcx("lazy");
function g() {
    g(b.toString())
}
g();