! { dg-do run }!! PR fortran/41872!! Character functions returning allocatable scalars!program test
implicit noneif(func() /='abc')STOP1containsfunctionfunc()result(str)character(len=3), allocatable :: str
if(allocated(str))STOP2allocate(str)
str ='abc'end function func
end program test