blob: d843d3334b03719d7ae5742c93dbc30ead47a704 [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
5assertThrows(function testDeepArrayLiteral() {
6 testDeepArrayLiteral([], [], [[]]);
7}, RangeError);
8
9assertThrows(function testDeepObjectLiteral() {
10 testDeepObjectLiteral({}, {}, {x:[[]]});
11}, RangeError);