blob: ab8fbd98fc7fbe6c04b19dfbc7952fa8d98e32b4 [file] [log] [blame]
Ben Murdoch61f157c2016-09-16 13:49:30 +01001// Copyright 2016 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: --es-staging
6
7function push_a_lot(arr) {
8 for (var i = 0; i < 2e4; i++) {
9 arr.push(i);
10 }
11 return arr;
12}
13
14__v_13 = push_a_lot([]);