--- /dev/null
+//@ runProfiler
+function test() {
+ (function functionName() {
+ ++counter;
+ if (!arguments[0])
+ return;
+ eval("functionName(arguments[0] - 1, functionName, '' + functionName);");
+ })(arguments[0]);
+}
+
+for (var i = 0; i < 10000; ++i) {
+ counter = 0;
+ test(100);
+ if (counter !== 101) {
+ throw "Oops, test(100) = " + test(100) + ", expected 101.";
+ }
+}
\ No newline at end of file