1// 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}; 23