fl.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
F4330
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
 
     FORTRAN warning error F4330
 
     <varname> : NEAR/FAR/HUGE equivalence attribute conflict
 
     A variable or array was declared with one attribute but
     equivalenced into a block with a different attribute. For
     instance,
 
          INTEGER A(100000)
          INTEGER B[NEAR](5)
          EQUIVALENCE (A(1), B(1))      ! Error
          END
 
     A has an implicit attribute of HUGE because of its size. B
     is explicitly declared as NEAR, however, causing an
     attribute conflict when the line
 
          EQUIVALENCE (A(1), B(1))      ! Error
 
     tries to make A and B equivalent.
                                    -♦-