meson/test cases/fortran/14 fortran links c/f_call_c.f90

12 lines
129 B
Fortran

program main
implicit none
interface
subroutine hello() bind (c)
end subroutine hello
end interface
call hello()
end program