AArch64: correct constraint on Upl early clobber alternatives
[official-gcc.git] / gcc / testsuite / gfortran.dg / char_component_initializer_3.f90
blob158af918f794e6701324d3251cb18ecf2c312a8b
1 ! { dg-do compile }
2 ! PR fortran/78479
3 program p
4 type t
5 character(3) :: c(1) = 'a' // ['b']
6 end type
7 end