summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/recompile/bug643376.js
blob: 300fbc90d73a4a9fe6af7a0582ad8f29c3d7384e (plain)
1
2
3
4
5
6
7
8
SECTION = 0;
function TestCase() {}
function outer_func(x)
{
    var y = "inner";
    new TestCase( SECTION, { SECTION: ++y });
}
outer_func(1111);