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