summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug662082.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--js/src/jit-test/tests/jaeger/bug662082.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/jaeger/bug662082.js b/js/src/jit-test/tests/jaeger/bug662082.js
new file mode 100644
index 0000000000..533fee8ba3
--- /dev/null
+++ b/js/src/jit-test/tests/jaeger/bug662082.js
@@ -0,0 +1,11 @@
+
+function foo(z)
+{
+ var x = 2;
+ if (z) {
+ x = 2.5;
+ }
+ var y = x * 10;
+ assertEq(y, 20);
+}
+foo(false);