summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g77.f-torture/execute/dcomplex.f
blob: a46f03aabef0c89f4457e106d8e013ea4f6e6701 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
      program foo
      complex*16      z0, z1, z2

      z0 = dcmplx(0.,.5)
      z1 = 1./z0
      if (z1 .ne. dcmplx(0.,-2)) call abort

      z0 = 10.*z0
      if (z0 .ne. dcmplx(0.,5.)) call abort

      z2 = cmplx(1.,2.)
      z1 = z0/z2
      if (z1 .ne. dcmplx(2.,1.)) call abort

      z1 = z0*z2
      if (z1 .ne. dcmplx(-10.,5.)) call abort
      end