aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/transfer_array_intrinsic_4.f90
blob: 3a929a81446a38f3cfa4d2f0b054a0b6c2418c1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
! { dg-do run }
! { dg-options "-std=gnu" }
! Tests patch for pr27155, where character scalar string_lengths
! were not correctly translated by the array transfer intrinsic.
!
! Contributed by Bo Berggren  <bo.berggren@glocalnet.net>
!
program trf_test
      implicit none
      character(11) :: s1, s2
      integer(4) :: ia(3)
      integer(1) :: ba(12)
      equivalence (ia, ba)

      s1 = 'ABCDEFGHIJK'
      ia = TRANSFER (s1, (/ 0_4 /))
      s2 = TRANSFER(ba + 32_1, s2)

      if (s2 .ne. 'abcdefghijk') call abort ()

      s1 = 'AB'
      ba = TRANSFER (trim (s1)//'       JK' , (/ 0_1 /))
      s2 = TRANSFER(ia, s2)

      if (trim (s1)//'       JK' .ne. s2) call abort ()

end program trf_test