blob: d9abece30d9593159f2134441e86de2f44e72b88 [file] [log] [blame]
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001// Copyright 2014 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
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00005// Flags: --stack-size=150
Ben Murdochb8a8cc12014-11-26 15:28:44 +00006
7function f(a) {
8 f(a + 1);
9}
10
11Error.__defineGetter__('stackTraceLimit', function() { });
12try {
13 f(0);
14} catch (e) { }