rt_gccstream/gcc/testsuite/gfortran.dg/func_result_2.f90

11 lines
251 B
Fortran

! { dg-do run }
! Character functions with a result clause were broken
program testch
if (ch().ne."hello ") call abort()
contains
function ch () result(str)
character(len = 10) :: str
str ="hello"
end function ch
end program testch