(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.fortran-torture/
compile/
pr89324.f90
module a
contains
  pure function myotherlen()
    myotherlen = 99
  end  
  subroutine b
    characterx
    block
       character(myotherlen()) c
       c = "abc"
       x = c
    end block
  
    end  
end