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-12-08 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
pr59440-3.f90
blob
70fe6a5c5c3d6f19be268f7aa40f502dce24ca44
1
! PR fortran/59440
2
! { dg-do compile }
3
! { dg-options "-O2 -g" }
4
5
subroutine
foo
(
nnml
,
outv
)
6
integer
,
intent
(
in
) ::
nnml
7
integer
,
intent
(
out
) ::
outv
8
integer
::
grid
9
call
bar
10
outv
=
grid
11
contains
12
subroutine
bar
13
namelist
/
N
/
grid
14
read
(
nnml
,
nml
=
N
)
15
end subroutine
bar
16
end subroutine
foo