* tree-ssa-loop-manip.c (split_loop_exit_edge): Return the new block.
[official-gcc.git] / gcc / testsuite / gfortran.dg / implicit_6.f90
blobbb7fe3221abdd19aa044d1876fc32db0486674b2
1 ! { dg-do compile }
2 ! PR 24643
3 ! substring references on implicitly typed CHARACTER variables didn't work
4 PROGRAM P
5 IMPLICIT CHARACTER*8 (Y)
6 YLOCAL='A'
7 YBTABLE=YLOCAL(1:2)
8 END