(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr60797.c
       1  /* { dg-do compile } */
       2  /* { dg-skip-if "" { alias } } */
       3  
       4  extern int foo __attribute__((alias("bar"))); /* { dg-error "supported" } */
       5  int main()
       6  {
       7    return 0;
       8  }