]> matita.cs.unibo.it Git - pkg-cerco/acc.git/blob - tests/GCCTestSuite/deprecated-3.c.expected
Imported Upstream version 0.2
[pkg-cerco/acc.git] / tests / GCCTestSuite / deprecated-3.c.expected
1 /* Test __attribute__((deprecated)).  Test merging with multiple
2    declarations.  Bug 7425.  */
3 /* { dg-do compile } */
4 /* { dg-options "" } */
5
6 void func(void);
7 void func(void) __attribute__((deprecated));
8
9 void f(void) {
10   func(); /* { dg-warning "'func' is deprecated" } */
11 }