blob: 1227500eeaf45b7b696ab6b6f3a7e87275569a27 [file] [log] [blame]
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001// 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 --stress-compaction
6
7%SetAllocationTimeout(100000, 100000);
8
9var x = {};
10x.a = 1;
11x.b = 2;
12x = {};
13
14var y = {};
15y.a = 1;
16
17%SetAllocationTimeout(100000, 0);
18
19for (var z in y) { }