aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/warn/deprecated-2.C
blob: d79a7f9e6ac3671d5f1ac5e9cd75c09a4657a5c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* Test __attribute__((deprecated)).  Test merging with multiple
   declarations.  Bug 7425 (C++ version).  */
/* { dg-do compile } */
/* { dg-options "" } */

void func(void);
void func(void) __attribute__((deprecated));

void f(void) {
  func(); /* { dg-warning "'void func\\(\\)' is deprecated" } */
}