(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr59963-3.c
       1  /* PR c/59963 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-Wconversion" } */
       4  
       5  extern void foo (void *p);
       6  
       7  void
       8  bar (void)
       9  {
      10    {
      11      /* This must not ICE.  */
      12      int i __attribute__((cleanup (foo)));
      13    }
      14  }