repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
gfortran.dg
/
func_result_2.f90
blob
6b91653ed9da878c317fa6158573076f72e50944
1
! { dg-do run }
2
! Character functions with a result clause were broken
3
program
testch
4
if
(
ch
().
ne
.
"hello "
)
call
abort
()
5
contains
6
function
ch
()
result
(
str
)
7
character
(
len
=
10
) ::
str
8
str
=
"hello"
9
end function
ch
10
end program
testch