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 target/83368
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
bind_c_implicit_vars.f03
blob
5df783fcf2dc980d58716336c232da8fbdba354e
1
! { dg-do compile }
2
! { dg-options "-Wc-binding-type" }
3
module bind_c_implicit_vars
4
5
bind(c) :: j ! { dg-warning "may not be C interoperable" }
6
7
contains
8
subroutine sub0(i) bind(c) ! { dg-warning "may not be C interoperable" }
9
i = 0
10
end subroutine sub0
11
end module bind_c_implicit_vars