1  /* Verify that extern inline function never actually inlined has no abstract DIE.  */
       2  /* { dg-do compile } */
       3  /* { dg-options "-O0 -gdwarf -dA -fgnu89-inline" } */
       4  /* { dg-final { scan-assembler-not "DW_AT_inline" } } */
       5  extern inline int t()
       6  {
       7  }
       8  int (*q)()=t;
       9  int t()
      10  {
      11  }