aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/warn6.C
blob: 1a54b3297894bf740603e2b5656b2c80d72f7a21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Build don't link:
// Special g++ 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;
}