* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gfortran.dg / charlen_16.f90
blob826f733c82dcaa4a3f7b1ad279cd93dd68e66bd9
1 ! { dg-do run }
2 ! PR fortran/78350
3 program p
4 type t
5 character(2) :: c(1) = [character(3) :: 'abc']
6 end type
7 type(t) :: x
8 if (trim(x%c(1)) /= 'ab') call abort
9 end