(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
lto/
attr-weakref-1_1.c
       1  extern void callmesecond();
       2  static void callmealias() __attribute__((weakref ("callmesecond")));
       3  
       4  void
       5  b()
       6  {
       7    callmealias();
       8  }