2014-04-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / deprecated-6.c
blob874e1a68e07b2e96baba0b32e18b9eb704441104
1 /* Test __attribute__((deprecated)). Test merging with multiple
2 declarations. Bug 7425. */
3 /* { dg-do compile } */
4 /* { dg-options "" } */
6 void func(void);
7 void func(void) __attribute__((deprecated ("Do not use")));
9 void f(void) {
10 func(); /* { dg-warning "'func' is deprecated .declared at .*.: Do not use" } */