diff options
Diffstat (limited to 'js/src/jit-test/tests/jaeger/bug554675-2.js')
-rw-r--r-- | js/src/jit-test/tests/jaeger/bug554675-2.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/jaeger/bug554675-2.js b/js/src/jit-test/tests/jaeger/bug554675-2.js new file mode 100644 index 000000000..d3b6988c9 --- /dev/null +++ b/js/src/jit-test/tests/jaeger/bug554675-2.js @@ -0,0 +1,11 @@ +function a(code) { + var f = new Function("for each(let x in[false,'',/x/,'',{}]){if(x<x){(({}))}else if(x){}else{}}"); + try { + f() + } catch(e) {} +} +a() +a() + +/* Don't crash (CLI only). */ + |