(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
special/
alias-2.c
       1  /* PR 3997 */
       2  /* { dg-do run } */
       3  /* { dg-require-alias "" } */
       4  
       5  extern void abort (void);
       6  extern void exit (int);
       7  
       8  void foo(void)
       9  {
      10    exit(0);
      11  }
      12  
      13  static void bar(void) __attribute__((alias("foo")));
      14  
      15  int main()
      16  {
      17    bar();
      18    abort ();
      19  }