1 /* { dg-do compile } */
2 /* { dg-options "-Winline -O2 -fgnu89-inline" } */
3
4 inline int q(void); /* { dg-warning "body not available" } */
5 inline int t(void)
6 {
7 return q(); /* { dg-message "called from here" } */
8 }