(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr15443-1.c
       1  /* { dg-do compile } */
       2  
       3  void f () __attribute__ ((__malloc__)); /* { dg-warning "ignored" } */
       4  
       5  int main ()
       6  {
       7  	/* This used to cause an ICE.  */
       8  	f ();
       9  }
      10