mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-16 04:02:03 -06:00
13 lines
120 B
Fortran
13 lines
120 B
Fortran
program main
|
|
|
|
implicit none
|
|
|
|
interface
|
|
subroutine func() bind(C)
|
|
end subroutine
|
|
end interface
|
|
|
|
call func()
|
|
|
|
end program
|