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
2017-02-20 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
finalize_19.f90
blob
1eeb6af658e30d89d1ca2c63cd611fa2f7fbb553
1
! { dg-do compile }
2
!
3
! PR fortran/58356
4
!
5
! Contributed by Andrew Benson
6
!
7
module
ct
8
type
::
cfl
9
contains
10
final
::
cfld
11
end type
cfl
12
type
,
extends
(
cfl
) ::
cfde
13
contains
14
end type
cfde
15
contains
16
subroutine
cfld
(
self
)
17
implicit none
18
type
(
cfl
),
intent
(
inout
) ::
self
19
return
20
end subroutine
cfld
21
end module
ct