1      program pr6177
2C
3C Test case for PR optimization/6177.
4C This bug (an ICE) originally showed up in file cblat2.f from LAPACK.
5C
6      complex x
7      complex w(1)
8      intrinsic conjg
9      x = (2.0d0, 1.0d0)
10      w(1) = x
11      x = conjg(x)
12      w(1) = conjg(w(1))
13      if (abs(x-w(1)) .gt. 1.0e-5) call abort
14      end
15