(root)/
gcc-13.2.0/
gcc/
testsuite/
c-c++-common/
attr-cdtor-1.c
       1  /* PR c/90658 */
       2  /* { dg-do compile { target init_priority } } */
       3  
       4  void f ();
       5  void g1 () __attribute__ ((constructor(f))); /* { dg-error "priorities must be integers" } */
       6  void g2 () __attribute__ ((destructor(f))); /* { dg-error "priorities must be integers" } */