I am using FTN95 6.00 in VS2008. Please, consider the following code:
Program hello
write(*,*) 'hello!'
end
subroutine pippo(a)
integer:: a
a=1
write(*,*)a
return
end
subroutine pippo(b)
integer:: b
b=1
write(*,*)b
return
end
If I try compiling for .NET platform in DEBUG configuration, I properly get the following error message: 'Function PIPPO has been loaded more than once'. Instead, if I try compiling the same code for WIN32 platform, the linking of course fails, but [u:8d439a847a]no error message is printed[/u:8d439a847a].
It seems a very time-wasting bug, for very slow programmers!