2017-02-20 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / gcc / testsuite / gfortran.dg / storage_size_3.f08
blob57b50af56106b9dbf5da99059810065c60e185ea
1 ! { dg-do run }
3 ! PR 47024: [OOP] STORAGE_SIZE (for polymorphic types): Segfault at run time
4 ! PR 47189: [OOP] calling STORAGE_SIZE on a NULL-initialized class pointer
5 ! PR 47194: [OOP] EXTENDS_TYPE_OF still returns the wrong result if the polymorphic variable is unallocated
7 ! Contributed by Tobias Burnus <burnus@gcc.gnu.org>
9 type t
10   integer(kind=4) :: a
11 end type
13 class(t), pointer :: x => null()
14 class(t), allocatable :: y
16 if (storage_size(x)/=32) call abort()
17 if (storage_size(y)/=32) call abort()
19 allocate(y)
21 if (storage_size(y)/=32) call abort()
23 deallocate(y)
25 if (storage_size(y)/=32) call abort()
27 end