* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gfortran.dg / storage_size_1.f08
blob71d3589c8ed227d1b5d9bdeb0ac85dcf6010bcc9
1 ! { dg-do run }
3 ! PR 44649: [OOP] F2008: storage_size intrinsic
5 ! Contributed by Janus Weil <janus@gcc.gnu.org>
7 type :: t
8   integer(4) :: i
9   real(4) :: r
10 end type
12 type,extends(t) :: t2
13   integer(4) :: j
14 end type
16 type(t) :: a
17 type(t), dimension(1:3) :: b
18 class(t), allocatable :: cp
20 allocate(t2::cp)
22 if (sizeof(a)        /=  8) call abort()
23 if (storage_size(a)  /= 64) call abort()
25 if (sizeof(b)        /= 24) call abort()
26 if (storage_size(b)  /= 64) call abort()
28 if (sizeof(cp)       /= 12) call abort()
29 if (storage_size(cp) /= 96) call abort()
31 end