]> matita.cs.unibo.it Git - pkg-cerco/acc.git/blob - tests/GCCTestSuite/winline-2.c
Imported Upstream version 0.2
[pkg-cerco/acc.git] / tests / GCCTestSuite / winline-2.c
1 /* { dg-do compile } */
2 /* { dg-options "-Winline -O2" } */
3
4 inline int q(void);              /* { dg-warning "body not available" "" } */
5 inline int t(void)
6 {
7         return q();              /* { dg-warning "called from here" "" } */
8 }