Files
CMake/Tests/RunCMake/try_run/main.f90
2023-10-16 11:30:17 -04:00

13 lines
120 B
Fortran

program main
implicit none
interface
subroutine func() bind(C)
end subroutine
end interface
call func()
end program