summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug658240.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/jaeger/bug658240.js')
-rw-r--r--js/src/jit-test/tests/jaeger/bug658240.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/jaeger/bug658240.js b/js/src/jit-test/tests/jaeger/bug658240.js
new file mode 100644
index 0000000000..033f2fbdab
--- /dev/null
+++ b/js/src/jit-test/tests/jaeger/bug658240.js
@@ -0,0 +1,11 @@
+function f() {
+ var x = 0;
+ for(var i=0; i<5; i++) {
+ (function() {
+ var q = parseFloat("2");
+ x += q;
+ })();
+ }
+ return x;
+}
+assertEq(f(), 10);