URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [execute/] [straret.f90] - Rev 307
Go to most recent revision | Compare with Previous | Blame | View Log
! Test assumed length character functions.
character*(*) function f()
f = "Hello"
end function
character*6 function g()
g = "World"
end function
program straret
character*6 f, g
character*12 v
v = f() // g()
if (v .ne. "Hello World ") call abort ()
end program
Go to most recent revision | Compare with Previous | Blame | View Log