aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/char_component_initializer_3.f90
blob: 158af918f794e6701324d3251cb18ecf2c312a8b (plain)
1
2
3
4
5
6
7
! { dg-do compile }
! PR fortran/78479
program p
   type t
      character(3) :: c(1) = 'a' // ['b']
   end type
end