The following test program contains a syntax error, as shown in the end-of-line comment. FTN95 8.70 compiles the program to an EXE when the /opt option is specified, with or without /64.
program tst
implicit none
integer, parameter :: N = 10
integer i
real,dimension(N) :: x
real :: x0 = 2.3
!
x = [(0.5*i+0.2, i=1,N)]
if(all(x(i) > x0+1e-3))then ! syntax error, argument of ALL() must be array
print *,' All elements of x exceed x0 by a sufficient margin'
else
print *,' Some elements of x are too small'
endif
end program tst