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 tree-optimization/86415 - strlen() not folded for substrings within constant arrays
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
binding_label_tests_11.f03
blob
c1fc98effb60e318350ec4a852b79f608df23e32
1
! { dg-do compile }
2
module binding_label_tests_11
3
use iso_c_binding, only: c_int
4
implicit none
5
contains
6
function one() bind(c, name="c_one")
7
integer(c_int) one
8
one = 1
9
end function one
10
end module binding_label_tests_11