RISC-V: Regenerate opt urls.
[official-gcc.git] / gcc / testsuite / gfortran.dg / derived_constructor_comps_4.f90
blob2585367e2878826bbac495e3777059d50957ebb5
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) STOP 1
18 end