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
2014-07-12 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
nesting_1.f90
blob
51ebfd999a8bba4ce7cc4db6716c113b48d164fb
1
! PR 18525
2
! we used to incorrectly refer to n from a when resolving the call to
3
! c from b
4
! { dg-do run }
5
subroutine
a
(
n
)
6
call
b
(
n
+
1
)
7
contains
8
subroutine
b
(
n
)
9
call
c
(
n
)
10
end subroutine
b
11
12
subroutine
c
(
m
)
13
if
(
m
/=
1
)
call
abort
14
end subroutine
c
15
end subroutine
a
16
17
call
a
(
0
)
18
end