blob: e0d6010287fd0224e923d8f01a05ca60f4192baf [file] [log] [blame]
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001// Copyright 2015 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// Flass: --allow-natives-syntax --always-opt --gc-interval=163 --stress-compaction
6
7try { a = f();
8} catch(e) {
9}
10var i = 0;
11function f() {
12 try {
13 f();
14 } catch(e) {
15 i++;
16 [];
17 }
18}
19f();