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
2009-10-05 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
entry_2.f90
blob
5c0a32e52bef9c087ff033c36391e1c26fc33d7f
1
! { dg-do compile }
2
! Arguments to procedures with multiple entry points may be absent, however
3
! they are not optional, unless explicitly maked as such.
4
subroutine
foo
(
i
,
a
,
b
)
5
logical
a
(
2
,
2
)
6
logical
b
(
1
)
7
! Check we don't get an "DIM must not be optional" error
8
a
=
any
(
b
,
i
)
9
entry
bar
()
10
end subroutine