the problem occurs if there is a non fortran variable type
this doesn't work:

module test
use hello_mod
implicit none
Hello :: h
integer :: i
contains
function test1()
end function test1
function test2()
end function test2
end module test

while this does

module test
use hello_mod
implicit none
integer :: i
contains
function test1()
end function test1
function test2()
end function test2
end module test


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.