void control(alias f)()
if (isCallable!f)
{
f();
}
The alias parameter allow to pass whatever you want as template parameter. For more safety a constraint tests if the argument is something that can be run.
module x
implicit none
contains
subroutine control(f)
interface
subroutine f()
end subroutine f
end interface
call f
end subroutine control
end module x