summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug659456.js
blob: b2155f000c8e5ca6b231961c8de0757c636b4496 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// |jit-test| error: InternalError
function foo() { return "tracejit,methodjit"; };
function baz(on) {
    foo('bar');
}
eval("\
test();\
function test() {\
  baz(true);\
  test();\
}\
");