OSDN Git Service

PR preprocessor/30805:
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / winline-4.c
1 /* { dg-do compile } */
2 /* { dg-options "-Winline -O1 -fno-unit-at-a-time" } */
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 }
9 int q(void)
10 {
11 }