PR c++/58407 - deprecated implicit copy ops.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / warn6.C
blobb48e08406de0b64e11f829364840b08c6d91b1b5
1 // { dg-do assemble  }
2 // { dg-options "-W -Wall -Wno-deprecated-copy" }
4 // Copyright (C) 2001 Free Software Foundation, Inc.
5 // Contributed by Nathan Sidwell 2 Mar 2001 <nathan@codesourcery.com>
7 // Bug 2139. We gave an erronous warning about an unused parm on a
8 // synthesized function
10 struct A
12   virtual ~A ();
14 void foo (A const &a)
16   A a1 = a;