blob: cda75ced1ae805a64ab799be046865a65dc32baf [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Bug 776278: Constructors without overloads were wrongly requiring variadic
// arguments to be present.
interface TestVariadicConstructorArguments {
constructor(double... args);
};