summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/regress/regress-843543.js
blob: 7e7f86b5722458f9a8abf9055677b1f73bf86e49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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

const o = {x:9};
o.__proto__ = Array.prototype;

function foo(o) {
  return o.indexOf(undefined);
}

assertEquals(-1, foo(o));
assertEquals(-1, foo(o));
%OptimizeFunctionOnNextCall(foo);
assertEquals(-1, foo(o));