Sign in
chromium
/
external
/
github.com
/
Kitware
/
CMake
/
master
/
.
/
Tests
/
RunCMake
/
try_run
/
main.f90
blob: 29b933e81252cfc37f80b9837e8ec0cad398f28e [
file
]
program main
implicit
none
interface
subroutine func
()
bind
(
C
)
end
subroutine
end
interface
call func
()
end
program