Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / warn / deprecated-2.C
blobafddc8f0bbd27e17d6d11d00e552c49d73a8249b
1 /* Test __attribute__((deprecated)).  Test merging with multiple
2    declarations.  Bug 7425 (C++ version).  */
3 /* { dg-do compile } */
4 /* { dg-options "" } */
6 void func(void);
7 void func(void) __attribute__((deprecated));
9 void f(void) {
10   func(); /* { dg-warning "'func' is deprecated" } */