summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/inline/bug645666.js
blob: 34fd6822ab7c257bd0f92438189de81d6cf661bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
function f1() {
    gc();
}
function f2() {
    with(this) {};
    f1();
}
function f3() {
    f2();
}
function f4() {
    f3();
}
f3();
f3();
f4();