Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gfortran.fortran-torture / execute / straret.f90
blob579e35a70a485084333c576899ecc5bf289c8d44
1 ! Test assumed length character functions.
3 character*(*) function f()
4 f = "Hello"
5 end function
7 character*6 function g()
8 g = "World"
9 end function
11 program straret
12 character*6 f, g
13 character*12 v
16 v = f() // g()
17 if (v .ne. "Hello World ") call abort ()
18 end program