Plugins: Add label-text.h to CPPLIB_H so it will be installed [PR115288]
[official-gcc.git] / gcc / testsuite / gfortran.dg / eoshift_9.f90
blobf711b04a7da2d379897f0642721f41ca24703542
1 ! { dg-do compile }
2 ! PR fortran/104331 - ICE in gfc_simplify_eoshift
3 ! Contributed by G.Steinmetz
5 program p
6 character(3), parameter :: a(:) = ['123'] ! { dg-error "deferred shape" }
7 character(3), parameter :: b(*) = eoshift(a, 1)
8 end