Chromium Code Reviews| Index: test/mjsunit/regress/regress-622663.js |
| diff --git a/test/mjsunit/regress/regress-622663.js b/test/mjsunit/regress/regress-622663.js |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8b6342e1864034ba1b1a6d4cfbcd3c699ffdaca9 |
| --- /dev/null |
| +++ b/test/mjsunit/regress/regress-622663.js |
| @@ -0,0 +1,9 @@ |
| ++// Copyright 2016 the V8 project authors. All rights reserved. |
| ++// Use of this source code is governed by a BSD-style license that can be |
| ++// found in the LICENSE file. |
| ++ |
| ++// Flags: --ignition --no-lazy |
|
rmcilroy
2016/06/24 14:34:00
Maybe don't set the --ignition flag - we have a v
nickie
2016/06/24 14:36:55
Acknowledged.
|
| + |
| +(function() { |
| + try { (y = [...[]]) => {} } catch(_) {} // will core dump, if not fixed |
| +})(); |