I get the following error during the compile (/CHECKMATE).
Compiling file: main.f95
F:\Temp\main.F95(2) : warning 298 - Variable J has been used without being given an initial value
Compilation completed with no errors.
The code involves a data initialization of a two-dimensional array. I need to to do it this way to keep all the related data together for easier editing later. I do this in a BLOCK DATA, but this will occur in a routine/module. The simplified code is block data cb integer I,J integer zones_83(2),spzon_83_projection(2),spzon_83(2),spcc_83(2,2) common/defg/zones_83,spzon_83_projection,spzon_83,spcc_83 data (zones_83(i),spzon_83_projection(i),spzon_83(i),(spcc_83(i,j),j=1,2),i=1,2)/10*0/
In actuality, it's all working as one might expect, just the warning that's annoying.