Silverfrost Forums

Welcome to our forums

Missing error message

28 Sep 2011 11:00 #9032

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!

28 Sep 2011 5:12 #9035

You get an error report when using Plato and when working from a command line in a DOS box.

If there is a fault then it will be with the Visual Studio plugin for FTN95.

28 Sep 2011 9:41 #9037

Thanks Paul. I can confirm the problem exists only in Visual Studio.

Please login to reply.