aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/c_funloc_tests.f03
blob: 823c5e39d2a963ec583de4d6e785cae92935a5d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
! { dg-do run }
! This test case simply checks that c_funloc exists, accepts arguments of 
! flavor FL_PROCEDURE, and returns the type c_funptr
module c_funloc_tests
  use, intrinsic :: iso_c_binding, only: c_funptr, c_funloc

contains
  recursive subroutine sub0() bind(c)
    type(c_funptr) :: my_c_funptr

    my_c_funptr = c_funloc(sub0)
  end subroutine sub0
end module c_funloc_tests

program driver
  use c_funloc_tests
  
  call sub0()
end program driver