summaryrefslogtreecommitdiffstats
path: root/test cases/fortran/14 fortran links c/f_call_c.f90
blob: b3f70a7ca3e26b018e8a7cac42a89630f7a5b785 (plain)
1
2
3
4
5
6
7
8
9
10
11
program main
implicit none

interface
subroutine hello()  bind (c)
end subroutine hello
end interface

call hello()

end program