URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [func_result_2.f90] - Rev 149
Go to most recent revision | Compare with Previous | Blame | View Log
! { 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
Go to most recent revision | Compare with Previous | Blame | View Log