/* Test __attribute__((deprecated)). Test merging with multiple declarations. Bug 7425. *//* { dg-do compile } *//* { dg-options "" } */voidfunc(void);voidfunc(void)__attribute__((deprecated("Do not use")));voidf(void) {func();/* { dg-warning "'func' is deprecated: Do not use" } */}