aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/allocate_alloc_opt_10.f90
blob: f5dae1ac6e81017fd9bfbd6c71c918e79aa0a6c5 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
! { dg-do run }
!
! PR 43388: [F2008][OOP] ALLOCATE with MOLD=
!
! Contributed by Janus Weil <janus@gcc.gnu.org>

type :: t1
  integer :: i
end type

type,extends(t1) :: t2
  integer :: j = 4
end type

class(t1),allocatable :: x,y
type(t2) :: z


!!! first example (static)

z%j = 5
allocate(x,MOLD=z)

select type (x)
type is (t2)
  print *,x%j
  if (x%j/=4) call abort
  x%j = 5
class default
  call abort()
end select


!!! second example (dynamic, PR 44541)

allocate(y,MOLD=x)

select type (y)
type is (t2)
  print *,y%j
  if (y%j/=4) call abort
class default
  call abort()
end select

end