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
2017-02-20 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
binding_label_tests_26a.f90
blob
d3f3039a713ba4ae4b9205a75498511c0162641f
1
! { dg-do compile }
2
!
3
! PR 58182: [4.9 Regression] ICE with global binding name used as a FUNCTION
4
!
5
! Contributed by Andrew Bensons <abensonca@gmail.com>
6
!
7
8
module
fg
9
contains
10
function
fffi
(
f
)
11
interface
12
function
f
()
bind
(
c
)
13
end function
14
end interface
15
end function
16
end module