OLD | NEW |
---|---|
(Empty) | |
1 +// Copyright 2016 the V8 project authors. All rights reserved. | |
2 +// Use of this source code is governed by a BSD-style license that can be | |
3 +// found in the LICENSE file. | |
4 + | |
5 +// 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.
| |
6 | |
7 (function() { | |
8 try { (y = [...[]]) => {} } catch(_) {} // will core dump, if not fixed | |
9 })(); | |
OLD | NEW |