(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
debug/
dwarf2-2.c
       1  /* { dg-do compile } */
       2  
       3  /* Copyright (C) 2000  Free Software Foundation  */
       4  /* Contributed by Alexandre Oliva <aoliva@redhat.com> */
       5  
       6  inline double fx (double x)
       7  {
       8    return 3 * x;
       9  }
      10  
      11  int
      12  main ()
      13  {
      14    double a = 0, fx (double), foo ();
      15    fx (a);
      16    if (a != 3)
      17      foo ();
      18  }