summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug1100623.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/basic/bug1100623.js')
-rw-r--r--js/src/jit-test/tests/basic/bug1100623.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/basic/bug1100623.js b/js/src/jit-test/tests/basic/bug1100623.js
new file mode 100644
index 0000000000..dbd75ed4dd
--- /dev/null
+++ b/js/src/jit-test/tests/basic/bug1100623.js
@@ -0,0 +1,16 @@
+// |jit-test| error: baz is null; skip-if: getBuildConfiguration('pbl')
+//
+// (skip if PBL enabled: it doesn't support the decompiler so doesn't give the
+// specific error message)
+
+var document = {getElementById: () => null};
+
+(function() {
+ const one = 1;
+
+ function foo() { return one; }
+ function bar() { return foo(); }
+
+ var baz = document.getElementById("baz");
+ baz.value;
+})();