repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
gcc/fortran/
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
func_result_5.f90
blob
5faff39502600d8fc4edc7ec0784ac5a912ec98c
1
! { dg-do compile }
2
!
3
! PR fortran/42650
4
!
5
! Result type was not working
6
!
7
8
type
(
t
)
function
func2
()
result
(
res
)
9
type
t
10
sequence
11
integer
::
i
=
5
12
end type
t
13
res
%
i
=
2
14
end function
func2