aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/dec-comparison-complex_1.f90
blob: 4bbb9a18b881c45845e6fb9ffbaed30624a0ef2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
! { dg-do run }
! { dg-options "-fdec" }
!
! Test case contributed by Mark Eggleston  <mark.eggleston@codethink.com>
!

program convert
  complex(4) :: a
  complex(4) :: b
  a = 8HABCDABCD
  b = transfer("ABCDABCD", b);
  ! Hollerith constants
  if (a.ne.8HABCDABCD) stop 1
  if (a.eq.8HABCEABCE) stop 2
  if (8HABCDABCD.ne.b) stop 3
  if (8HABCEABCE.eq.b) stop 4
end program