(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
analyzer/
malloc-ipa-12.c
       1  #include <stdlib.h>
       2  
       3  void recursive_free (void *ptr)
       4  {
       5    free (ptr); /* { dg-warning "double-'free' of 'ptr'" } */
       6    recursive_free (ptr); /* { dg-warning "infinite recursion" } */
       7  }