blob: a361050dbf39d53f1f166b44f01db3da61a60655 [file] [log] [blame]
/* 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: Do not use" } */
}