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

void func(void);
void func(void) __attribute__((deprecated ("Do not use")));

void f(void) {
  func(); /* { dg-warning "'func' is deprecated .declared at .*.: Do not use" } */
}