aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr85542.f90
blob: f61d2c9beb0b3284a3afe8b8a63a1a8c5249551b (plain)
1
2
3
4
5
6
7
! { dg-do compile }
! PR fortran/85542
function f(x)
   character(*), intent(in) :: x
   character((len((x)))) :: f
   f = x
end