URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [allocatable_scalar_8.f90] - Rev 708
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do run }
!
! PR fortran/41872
!
! Character functions returning allocatable scalars
!
program test
implicit none
if (func () /= 'abc') call abort ()
contains
function func() result (str)
character(len=3), allocatable :: str
if (allocated (str)) call abort ()
allocate (str)
str = 'abc'
end function func
end program test
Go to most recent revision | Compare with Previous | Blame | View Log