aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr83149_a.f90
blob: 3f15198bfe9708dd9475e0a46a774081939cbbbc (plain)
1
2
3
4
5
6
7
8
9
10
11
! Compiled with pr83149_b.f90
!
module mod
  character(8) string
contains
  function get_string() result(s)
    character(len_trim(string)) s
    s = string
  end function
end module