summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/regress/regress-7254.js
blob: 8231a8fd7461c496235386365ee318c1e7694717 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2018 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Flags: --allow-natives-syntax --opt

function foo(a) {
  a[0];
  a[1] = "";
}

foo([0,0].map(x => x));
foo([0,0].map(x => x));
%OptimizeFunctionOnNextCall(foo);
foo([0,0].map(x => x));
assertOptimized(foo);