view gcc/testsuite/gfortran.dg/derived_constructor_comps_4.f90 @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 84e7813d76e9
children
line wrap: on
line source

! { dg-do run }
!
! PR 47789: [F03] Structure constructor of type extending DT with no components
!
! Contributed by eddyg_61-bugzilla@yahoo.it

type:: one
end type

type, extends(one) :: two
  integer :: a
end type

type(two) :: wo = two(6)

if (wo%a /= 6) STOP 1

end