blob: afddc8f0bbd27e17d6d11d00e552c49d73a8249b [file] [log] [blame]
/* 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 "'func' is deprecated" } */
}