#include <stdlib.h>

void recursive_free (void *ptr)
{
  free (ptr); /* { dg-warning "double-'free' of 'ptr'" } */
  recursive_free (ptr);
}
