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
Fix compilation failure with C++98 compilers
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
common_12.f90
blob
39082f8931b434fec6138e1da66236ac551e997c
1
! { dg-do compile }
2
!
3
! PR fortran/39594
4
!
5
! Contributed by Peter Knowles and reduced by Jakub Jelinek.
6
!
7
module
pr39594
8
implicit
double precision
(
z
)
9
common
/
z
/
z0
,
z1
,
z2
,
z3
,
z4
,
z5
,
z6
,
z7
10
contains
11
subroutine
foo
12
implicit
double precision
(
z
)
13
common
/
z
/
z0
,
z1
,
z2
,
z3
,
z4
,
z5
,
z6
,
z7
14
call
bar
(
z0
)
15
end subroutine
foo
16
end module