diff options
Diffstat (limited to 'js/src/jit-test/tests/basic/bug510437.js')
-rw-r--r-- | js/src/jit-test/tests/basic/bug510437.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/basic/bug510437.js b/js/src/jit-test/tests/basic/bug510437.js new file mode 100644 index 000000000..2418b9b11 --- /dev/null +++ b/js/src/jit-test/tests/basic/bug510437.js @@ -0,0 +1,13 @@ +// Don't crash or assert. + +var d; +this.watch("d", eval); +(function () { + (eval("\ + (function () {\ + for (let x = 0; x < 2; ++x) {\ + d = x\ + }\ + })\ +"))() +})() |