summaryrefslogtreecommitdiffstats
path: root/PerformanceTests/SunSpider/tests/ubench/function-closure.js
blob: 6c7dde197802384fae2ae87c9375e7c147b3207f (plain)
1
2
3
4
5
6
7
function f()
{
    function g() { }
}

for (var i = 0; i < 300000; ++i)
    f();