aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/warn_concat.f90
blob: 8006dd392d2fea1cacaa184189550093a97f1380 (plain)
1
2
3
4
5
6
7
8
9
! { dg-do compile }
! { dg-additional-options "-Wall -O3" }
! PR 79929 - this used to give a warning.
! Test case by Harald Anlauf.
subroutine gfcbug138 (yerrmsg)
  character(*) :: yerrmsg
  yerrmsg = ""
  yerrmsg = "bug: " // yerrmsg
end subroutine gfcbug138