URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [gfortran.dg/] [pure_byref_1.f90] - Rev 12
Compare with Previous | Blame | View Log
! { dg-do run }
! PR 22607: PURE/ELEMENTAL return-by-reference functions
program main
implicit none
character(2), dimension(2) :: a, b
a = 'ok'
b = fun(a)
if (.not.all(b == 'ok')) call abort()
contains
elemental function fun(a)
character(*), intent(in) :: a
character(len(a)) :: fun
fun = a
end function fun
end program main