blob: 69f18564f9c2b98a8a0d62309f92f97a48bf1c22 [file] [log] [blame]
Emily Bernierd0a1eb72015-03-24 16:35:39 -04001// 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
5try {
6 var src = "return " + Array(12000).join("src,") + "src";
7 var fun = Function(src);
8 assertEquals(src, fun());
9} catch (e) {
10 // Some architectures throw a RangeError, that is fine.
11 assertInstanceof(e, RangeError);
12}