blob: e1df1b4e1d3dbef376a13a2e80e7fb543ee639b9 [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
5// Flags: --allow-natives-syntax
6
7var t1 = { f1: 0 };
8var t2 = { f2: 0 };
9
10var z = {
11 x: {
12 x: t1,
13 y: {
14 x: {},
15 z1: {
16 x: t2,
17 y: 1
18 }
19 }
20 },
21 z2: 0
22};