-
Notifications
You must be signed in to change notification settings - Fork 15.4k
Open
Labels
flangFlang issues not falling into any other categoryFlang issues not falling into any other categoryworksformeResolved as "works for me"Resolved as "works for me"
Description
I've documented the issue in another repo, but the following example reproduces the issue.
module example_mod
abstract interface
subroutine sub_i
end subroutine
end interface
contains
subroutine call_internal(string)
character(len=*), intent(in) :: string
call call_it(print_it)
contains
subroutine print_it
print *, string
end subroutine
end subroutine
subroutine call_it(sub)
procedure(sub_i) :: sub
call sub
end subroutine
end module
program example_prog
use example_mod
call call_internal("Hello")
end programMetadata
Metadata
Assignees
Labels
flangFlang issues not falling into any other categoryFlang issues not falling into any other categoryworksformeResolved as "works for me"Resolved as "works for me"