cb29d62068
Bug: chromium:850005 Change-Id: I287a274b86941e7d29705a24e479e4a02ecdfb07 Reviewed-on: https://chromium-review.googlesource.com/1088608 Reviewed-by: Jakob Gruber <jgruber@chromium.org> Commit-Queue: Camillo Bruni <cbruni@chromium.org> Cr-Commit-Position: refs/heads/master@{#53546}
12 lines
282 B
JavaScript
12 lines
282 B
JavaScript
// 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.
|
|
|
|
let args = [3.34, ];
|
|
function f(a, b, c) {};
|
|
f(...args);
|
|
args = args.splice();
|
|
f(...args);
|
|
args = [];
|
|
f(...args);
|