PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / class_19.f03
blob8ae48fa1b06cbb09b7868d9d88aeecd2f03260af
1 ! { dg-do run }
2 ! { dg-options "-fdump-tree-original" }
4 ! PR 43969: [OOP] ALLOCATED() with polymorphic variables
6 ! Contributed by Salvatore Filippone <sfilippone@uniroma2.it>
9 module foo_mod
10   type foo_inner
11     integer, allocatable :: v(:)
12   end type foo_inner
13   type foo_outer
14     class(foo_inner), allocatable :: int
15   end type foo_outer
16 contains
17 subroutine foo_checkit()
18   implicit none
19   type(foo_outer)    :: try
20   type(foo_outer),allocatable :: try2
21   class(foo_outer), allocatable :: try3
22   
23   if (allocated(try%int)) STOP 1
24   allocate(foo_outer :: try3)
25   if (allocated(try3%int)) STOP 2
26   allocate(try2)
27   if (allocated(try2%int)) STOP 3
29 end subroutine foo_checkit
30 end module foo_mod
33 program main
35   use foo_mod
36   implicit none
37   
38   call foo_checkit()
40 end program main
42 ! { dg-final { scan-tree-dump-times "__builtin_free" 12 "original" } }