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
RISC-V: Refactor Dynamic LMUL codes
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
assign_11.f90
blob
81c0286c4f6b2cf5c84a41f7bbe1c6ddb1f10f45
1
! { dg-do compile }
2
! PR 70260 - this used to ICE
3
! Original test case by Gernard Steinmetz
4
subroutine
s
(
f
)
5
integer
,
external
::
f
,
g
6
integer
::
h
7
g
=
f
(
2
)
! { dg-error "Illegal assignment to external procedure" }
8
h
=
g
(
2
)
9
end