summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/try_run/main.f90
blob: 29b933e81252cfc37f80b9837e8ec0cad398f28e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
program main

implicit none

interface
subroutine func() bind(C)
end subroutine
end interface

call func()

end program