From: dpb on
Allamarein wrote:
> What means 'This implicit statement is not positioned correctly within
> the scope unit'?
> I have this line in a COMMON (*.cmn): IMPLICIT DOUBLE PRECISION (a-h,
> o-z), INTEGER (i-n)
> I use two common, but only one have the previous line.
> How should I correct my code?

Reorder such that the IMPLICIT statement (and all IMPLICIT statements)
precede anything else in the program unit (program, subroutine or
function) except possibly PARAMETER statements.

There's a chart in the documentation (language reference) that shows
required statement order if the above isn't clear.

--