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
PR middle-end/77674
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
proc_decl_28.f90
blob
b3a557b1494497fde75c67179fa80aaf427e4afd
1
! { dg-do compile }
2
!
3
! PR 53956: [F03] PROCEDURE w/ interface: Bogus "EXTERNAL attribute conflicts with FUNCTION attribute"
4
!
5
! Contributed by James van Buskirk
6
7
interface
8
subroutine
sub
(
a
)
9
integer
,
external
::
a
10
end subroutine
11
end interface
12
13
procedure
(
sub
) ::
proc
14
15
end