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
[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
pr59440-1.f90
blob
d874c6dcec53f02bee687a1288e9b21811659b3a
1
! PR fortran/59440
2
! { dg-do compile }
3
! { dg-options "-O2 -g" }
4
5
module
pr59440
6
implicit none
7
type
t
8
integer
::
grid
=
0
9
end type
t
10
contains
11
subroutine
read_nml
(
nnml
,
s
)
12
integer
,
intent
(
in
) ::
nnml
13
type
(
t
),
intent
(
out
) ::
s
14
integer
::
grid
15
namelist
/
N
/
grid
16
call
read_nml_type_2
17
s
%
grid
=
grid
18
contains
19
subroutine
read_nml_type_2
20
read
(
nnml
,
nml
=
N
)
21
end subroutine
read_nml_type_2
22
end subroutine
read_nml
23
end module
pr59440