blob: e6b73eb6320bb84e2a72b33ad42d8a579057879b [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-Winline -O2" } */
/* APPLE LOCAL wording 4598393 */
inline int q(void); /* { dg-warning "the function body must appear before caller" "" } */
inline int t(void)
{
return q(); /* { dg-warning "called from here" "" } */
}