summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug697255.js
blob: b9f0cae0d2d65d6c517330a260835a36873bfeec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Binary: cache/js-dbg-32-6cd262091470-linux
// Flags: -j
//
a = evalcx("lazy");
b = {}
b.__proto__ = a
a.__proto__ = String
for (var a = 0; a < 50; a++) {
    try {
        b + ""
    } catch (e) {}
}