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
/
interface_proc_end.f90
blob
2fc9921df413d0c55fa0c05c843ba71d82fa7f1b
1
! { dg-do compile }
2
!
3
! PR fortran/34763
4
! Before, gfortran did not allow for the "END" in
5
! the interface, which is no module procedure.
6
!
7
! Test case contributed by Dick Hendrickson
8
!
9
module
n
10
contains
11
subroutine
n_interface
12
INTERFACE
13
SUBROUTINE
NGSXDY
(
TLS1
,
TLS2
)
14
REAL
::
TLS1
,
TLS2
15
END
! OK
16
END INTERFACE
17
end subroutine
18
end module