summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1298354.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/ion/bug1298354.js')
-rw-r--r--js/src/jit-test/tests/ion/bug1298354.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/ion/bug1298354.js b/js/src/jit-test/tests/ion/bug1298354.js
new file mode 100644
index 000000000..73502df5a
--- /dev/null
+++ b/js/src/jit-test/tests/ion/bug1298354.js
@@ -0,0 +1,17 @@
+// |jit-test| error: ReferenceError
+
+new Function(`
+ while (true) {
+ try {
+ var buf = new Uint8ClampedArray(a);
+ } catch (e) {
+ break;
+ }
+ }
+ var caughtInvalidArguments = false;
+ while (true) {
+ var a = inIon() ? -true.get : 0;
+ while (x > 7 & 0) {}
+ }
+`)();
+