Fix compilation failure with C++98 compilers
[official-gcc.git] / gcc / testsuite / gfortran.dg / alloc_comp_assign_1.f90
blob1576bdaf2904a16b18e8081d01fba2420cbc7e5e
1 ! { dg-do run }
2 ! Test assignments of derived type with allocatable components (PR 20541).
4 ! Contributed by Erik Edelmann <eedelmann@gcc.gnu.org>
5 ! and Paul Thomas <pault@gcc.gnu.org>
7 type :: ivs
8 character(1), allocatable :: chars(:)
9 end type ivs
11 type(ivs) :: a, b
12 type(ivs) :: x(3), y(3)
14 allocate(a%chars(5))
15 a%chars = (/"h","e","l","l","o"/)
17 ! An intrinsic assignment must deallocate the l-value and copy across
18 ! the array from the r-value.
19 b = a
20 if (any (b%chars .ne. (/"h","e","l","l","o"/))) STOP 1
21 if (allocated (a%chars) .eqv. .false.) STOP 2
23 ! Scalar to array needs to copy the derived type, to its ultimate components,
24 ! to each of the l-value elements. */
25 x = b
26 x(2)%chars = (/"g","'","d","a","y"/)
27 if (any (x(1)%chars .ne. (/"h","e","l","l","o"/))) STOP 3
28 if (any (x(2)%chars .ne. (/"g","'","d","a","y"/))) STOP 4
29 if (allocated (b%chars) .eqv. .false.) STOP 5
30 deallocate (x(1)%chars, x(2)%chars, x(3)%chars)
32 ! Array intrinsic assignments are like their scalar counterpart and
33 ! must deallocate each element of the l-value and copy across the
34 ! arrays from the r-value elements.
35 allocate(x(1)%chars(5), x(2)%chars(5), x(3)%chars(5))
36 x(1)%chars = (/"h","e","l","l","o"/)
37 x(2)%chars = (/"g","'","d","a","y"/)
38 x(3)%chars = (/"g","o","d","a","g"/)
39 y(2:1:-1) = x(1:2)
40 if (any (y(1)%chars .ne. (/"g","'","d","a","y"/))) STOP 6
41 if (any (y(2)%chars .ne. (/"h","e","l","l","o"/))) STOP 7
42 if (any (x(3)%chars .ne. (/"g","o","d","a","g"/))) STOP 8
44 ! In the case of an assignment where there is a dependency, so that a
45 ! temporary is necessary, each element must be copied to its
46 ! destination after it has been deallocated.
47 y(2:3) = y(1:2)
48 if (any (y(1)%chars .ne. (/"g","'","d","a","y"/))) STOP 9
49 if (any (y(2)%chars .ne. (/"g","'","d","a","y"/))) STOP 10
50 if (any (y(3)%chars .ne. (/"h","e","l","l","o"/))) STOP 11
52 ! An identity assignment must not do any deallocation....!
53 y = y
54 if (any (y(1)%chars .ne. (/"g","'","d","a","y"/))) STOP 12
55 if (any (y(2)%chars .ne. (/"g","'","d","a","y"/))) STOP 13
56 if (any (y(3)%chars .ne. (/"h","e","l","l","o"/))) STOP 14
57 end