Plugins: Add label-text.h to CPPLIB_H so it will be installed [PR115288]
[official-gcc.git] / gcc / testsuite / gfortran.dg / pointer_to_substring.f90
blob054a29d56bbfd043d5908424c64a4ff7378ee02a
1 ! { dg-do compile }
2 ! PR36724 - ICE on pointer to substring
3 ! testcase contributed by Loukas Peristeras.
5 character(LEN=132), target :: line
6 character(LEN=1), pointer :: t
8 read(*,'(A)') line
9 t=>line(1:1)
10 end