aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/class_array_17.f90
blob: e5961e110355fcd178ed45b1cd957f4b0012b81f (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
! { dg-do compile }
! { dg-options "-fdump-tree-original" }
!
! PR fortran/57456
!
module m
  implicit none
  type t
    integer :: i
   end type t
  type, extends(t) :: t2
    integer :: j
   end type t2
end module m

program test
  use m
  implicit none
  integer :: i
  class(t), save, allocatable :: y(:)

  allocate (t2 :: y(5))
  select type(y)
  type is (t2)
    do i = 1, 5
      y(i)%i = i
      y(i)%j = i*10
    end do
  end select
  deallocate(y)
end

! { dg-final { scan-tree-dump-times "__builtin_malloc \\(40\\);" 1 "original" } }
! { dg-final { cleanup-tree-dump "original" } }