3 ! PR 41478: Corrupted memory using PACK for derived-types with allocated components
4 ! PR 42268: [4.4/4.5 Regression] derived type segfault with pack
6 ! Original test case by Juergen Reuter <reuter@physik.uni-freiburg.de>
7 ! Modified by Janus Weil <janus@gcc.gnu.org>
12 type(container_t
), dimension(1) :: a1
, a2
14 a1
= pack (a2
, mask
= [.true
.])
15 if (a1(1)%entry/=1) call abort()