rt_gccstream/gcc/testsuite/gcc.dg/winline-2.c

9 lines
209 B
C

/* { dg-do compile } */
/* { dg-options "-Winline -O2" } */
inline int q(void); /* { dg-warning "body not available" "" } */
inline int t(void)
{
return q(); /* { dg-warning "called from here" "" } */
}