aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/guality/pr41558.f90
blob: 8a84de48a30699f9e3238116c522d5936fb7a421 (plain)
1
2
3
4
5
6
7
8
9
10
11
! PR debug/41558
! { dg-do run }
! { dg-skip-if "PR testsuite/51875" { { hppa*-*-hpux* } && { ! lp64 } } { "*" } { "" } }
! { dg-options "-g" }

subroutine f (s)
  character(len=3) :: s
  write (*,*), s ! { dg-final { gdb-test 7 "s" "'foo'" } }
end
  call f ('foo')
end