lto: Remove random_seed from section name.
[official-gcc.git] / gcc / testsuite / gfortran.dg / storage_size_3.f08
blobca4e786b765b6a9151df1fc360b1249481c5ed5a
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) STOP 1
17 if (storage_size(y)/=32) STOP 2
19 allocate(y)
21 if (storage_size(y)/=32) STOP 3
23 deallocate(y)
25 if (storage_size(y)/=32) STOP 4
27 end