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
* cfghooks.c (verify_flow_info): Disable check that all probabilities
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
finalize_25.f90
blob
cdbec4caca0e9d6927cfd649cbb263ae2632c978
1
! { dg-do run }
2
!
3
! PR fortran/58880
4
! PR fortran/60495
5
!
6
! Contributed by Andrew Benson and Janus Weil
7
!
8
9
module
gn
10
implicit none
11
type
sl
12
integer
,
allocatable
,
dimension
(:) ::
lv
13
contains
14
final
::
sld
15
end type
16
type
::
nde
17
type
(
sl
) ::
r
18
end type
nde
19
20
integer
::
cnt
=
0
21
22
contains
23
24
subroutine
sld
(
s
)
25
type
(
sl
) ::
s
26
cnt
=
cnt
+
1
27
! print *,'Finalize sl'
28
end subroutine
29
subroutine
ndm
(
s
)
30
type
(
nde
),
intent
(
inout
) ::
s
31
type
(
nde
) ::
i
32
i
=
s
33
end subroutine
ndm
34
end module
35
36
program
main
37
use
gn
38
type
::
nde2
39
type
(
sl
) ::
r
40
end type
nde2
41
type
(
nde
) ::
x
42
43
cnt
=
0
44
call
ndm
(
x
)
45
if
(
cnt
/=
2
)
call
abort
()
46
47
cnt
=
0
48
call
ndm2
()
49
if
(
cnt
/=
3
)
call
abort
()
50
contains
51
subroutine
ndm2
52
type
(
nde2
) ::
s
,
i
53
i
=
s
54
end subroutine
ndm2
55
end program
main