summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/recompile/bug643182.js
blob: cb134fe0bdc5939141b825187792eac033bf0a12 (plain)
1
2
3
4
5
6
7
x = 123;
function f() {}
function g(o) {
    y = x.p;
    eval('o');
}
g(f);