URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [gcc.dg/] [deprecated-3.c] - Rev 12
Compare with Previous | Blame | View Log
/* Test __attribute__((deprecated)). Test merging with multiple declarations. Bug 7425. */ /* { dg-do compile } */ /* { dg-options "" } */ void func(void); void func(void) __attribute__((deprecated)); void f(void) { func(); /* { dg-warning "'func' is deprecated" } */ }