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