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_dts_4.f03
blob
1e42d5b9bece553f10a5c5d641b10f1674a7deca
1
! { dg-do compile }
2
! { dg-options "-Wc-binding-type" }
3
module test
4
use iso_c_binding, only: c_int
5
type, bind(c) :: foo
6
integer :: p ! { dg-warning "may not be C interoperable" }
7
end type
8
type(foo), bind(c) :: cp
9
end module test