blob: 8e9198caeb1876c8fa96da5c19cea5fd1a1466da [file] [log] [blame]
!{ dg-do run }
! Check PR120483 is fixed.
! Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>
! and Peter GΓΌntert <peter@guentert.com>
program save_8
implicit none
character(len=:), allocatable, save :: s1
s1 = 'ABC'
if (s1(3:3) /= 'C') stop 1
end program save_8