aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.other/warn6.C
blob: 4325df74baaeafd1f0d6b72a65cff49f1e610c7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// { dg-do assemble  }
// { dg-options "-W -Wall" }

// 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;
}