blob: fa27baa3e817fdb23421c5f3fede9cd6a80ea7d2 [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
7var s = "0123456789ABCDEF";
8for (var i = 0; i < 16; i++) s += s;
9
10var count = 0;
11function f() {
12 try {
13 f();
14 if (count < 10) {
15 f();
16 }
17 } catch(e) {
18 s.replace("+", "-");
19 }
20 count++;
21}
22f();