view gcc/testsuite/gfortran.dg/realloc_on_assign_29.f90 @ 128:fe568345ddd5

fix CbC-example
author mir3636
date Wed, 11 Apr 2018 19:32:28 +0900
parents 04ced10e8804
children 84e7813d76e9
line wrap: on
line source

! { dg-do run }
! PR fortran/81116
! The assignment was broken due to a missing temporary.
! Original test case by Clive Page.

program test10
  implicit none
  character(:), allocatable :: string
  !
  string = '1234567890'
  string = string(1:5) // string(7:)
  if (string /= '123457890') call abort
end program test10