(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
ISO_Fortran_binding_13.c
       1  /* Test the fix for PR91926.  */
       2  
       3  /* Contributed by José Rui Faustino de Sousa  <jrfsousa@hotmail.com> */
       4  
       5  #include <stdlib.h>
       6  
       7  int ifb_echo(void*);
       8  
       9  int ifb_echo(void *this)
      10  {
      11    return this == NULL ? 1 : 2;
      12  }