blob: 8bb0c523ae3011572ed0ef755602db1e1df7d07a [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: --allow-natives-syntax --stress-compaction --verify-heap
6// Flags: --stack-size=100
7
8// Load the debug context to fill up code space.
9%GetDebugContext();
10%GetDebugContext();
11
12// Recurse and run regexp code.
13assertThrows(function f() { f(/./.test("a")); }, RangeError);