(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
c-interop/
select.f90
! { dg-do run }
! { dg-additional-sources "select-c.c dump-descriptors.c" }
!
! This program tests the CFI_select_part function.  All the interesting
! things happen in the corresponding C code.

program testit
  use iso_c_binding
  implicit none

  interface
    subroutine ctest () bind (c)
    end subroutine
  end interface

  call ctest ()

end program