/js/src/jit-test/tests/jaeger/bug549521.js

http://github.com/zpao/v8monkey · JavaScript · 12 lines · 8 code · 3 blank · 1 comment · 2 complexity · ea31abb9f66990627e1d63e1abd8a9ba MD5 · raw file

  1. function f(y) {
  2. if (y)
  3. return;
  4. let(x) {
  5. for (;;) {}
  6. }
  7. }
  8. /* Don't assert. */
  9. f(1);