summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug655950.js
blob: 21629924ff081fb5718cd02a36b4f37dc3966b10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Binary: cache/js-dbg-32-32e8c937a409-linux
// Flags: -m -n
//
function f() {
    try {
        (new {
            x: function() {}
        }.x)();
    } catch (e) {}
}
for (var i = 0; i<10000; i++) {
    f();
}