v8/test/mjsunit/regress/regress-crbug-387627.js
2014-06-23 13:17:42 +00:00

14 lines
311 B
JavaScript

// Copyright 2014 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
function f() {}
%FunctionBindArguments(f, {}, undefined, 1);
f();
f();
%OptimizeFunctionOnNextCall(f);
f();