2017-02-20 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / gcc / testsuite / gfortran.dg / derived_constructor_comps_4.f90
blobe70551838ae643fb424f496f1b374116309913ee
1 ! { dg-do run }
3 ! PR 47789: [F03] Structure constructor of type extending DT with no components
5 ! Contributed by eddyg_61-bugzilla@yahoo.it
7 type:: one
8 end type
10 type, extends(one) :: two
11 integer :: a
12 end type
14 type(two) :: wo = two(6)
16 if (wo%a /= 6) call abort()
18 end