blob: 28db6dff8b8cb137b7cd1e397a37ab1047c32f4c [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// Flags: --stack-size=100
6
7"a".replace(/a/g, "");
8
9var count = 0;
10function test() {
11 try {
12 test();
13 } catch(e) {
14 if (count < 50) {
15 count++;
16 "b".replace(/(b)/g, new []);
17 }
18 }
19}
20
21try {
22 test();
23} catch (e) {
24}