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
* intrinsic.c: Add EXECUTE_COMMAND_LINE intrinsic.
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
sibling_dummy_procedure_3.f90
blob
21bdceead95f7c63191f020427207bae298264d0
1
! { dg-do compile }
2
! This checks the fix for PR 26064
3
!
4
! Contributed by Sven Buijssen <sven.buijssen@math.uni-dortmund.de>
5
module
ice
6
implicit none
7
contains
8
9
subroutine
foo
()
10
contains
11
12
subroutine
bar
(
baz
)
13
integer
,
optional
::
baz
14
if
(
present
(
baz
))
then
15
endif
16
end subroutine
bar
17
end subroutine
foo
18
end module
19
20
! { dg-final { cleanup-modules "ice" } }