LBOUND(TRANSPOSE(I)) doesn't work

FX Coudert fxcoudert@gmail.com
Sun Oct 8 20:57:00 GMT 2006


Hi all,

I'm surprised we have a problem on such simple code, so I'm posting  
here a copy of my bug-report PR29391:

$ cat a6.f90
INTEGER :: I(-1:1,-1:1)=0
WRITE(6,*) LBOUND(TRANSPOSE(I))
END

$ ifort a6.f90 && ./a.out
            1           1
$ gfortran a6.f90 && ./a.out
           -1          -1
FX



More information about the Fortran mailing list