(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.fortran-torture/
compile/
gen_interf.f90
! Program to test generic interfaces.
program gen_interf
   implicit none
   interface gen
      function ifn (a)
         integer :: a, ifn
      end function
   end interface
   interface gsub
      subroutine igsub (a)
         integer a
      end subroutine
   end interface
         
   integer i

   call gsub (i)
   i = gen(i)
end program