blob: b48e08406de0b64e11f829364840b08c6d91b1b5 [file] [log] [blame]
// { dg-do assemble }
// { dg-options "-W -Wall -Wno-deprecated-copy" }
// Copyright (C) 2001 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 2 Mar 2001 <nathan@codesourcery.com>
// Bug 2139. We gave an erronous warning about an unused parm on a
// synthesized function
struct A
{
virtual ~A ();
};
void foo (A const &a)
{
A a1 = a;
}