view gcc/testsuite/gfortran.dg/char_component_initializer_1.f90 @ 128:fe568345ddd5

fix CbC-example
author mir3636
date Wed, 11 Apr 2018 19:32:28 +0900
parents 04ced10e8804
children 84e7813d76e9
line wrap: on
line source

! { dg-do run }
! Check the fix for PR31487 in which the derived type default initializer
! would be padded out with nulls instead of spaces.
!
! Reported by Harald Anlauf <anlauf@gmx.de>
!
program gfcbug62
  implicit none
  character(len=16) ::    tdefi(2) = (/'0z1jan0000','1hr       '/)
  type t_ctl
     character(len=16) :: tdefi(2) = (/'0z1jan0000','1hr       '/)
  end type t_ctl

  type(t_ctl) :: ctl
  integer     :: i,k

  if (tdefi(1) .ne. ctl%tdefi(1)) call abort ()
end program gfcbug62