blob: fa6528d1fac160ee8ffec3f471f011a110b3104e (
plain)
1
2
3
4
5
6
7
8
|
/* { dg-do compile } */
/* { dg-options "-Winline -O2" } */
inline __attribute__ ((always_inline)) void t(void); /* { dg-error "body not available" "" } */
void
q(void)
{
t(); /* { dg-error "called from here" "" } */
}
|