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
2009-10-05 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
bind_c_dts_4.f03
blob
b2eb5694f1c477a4fce797dfb946c219676d5df3
1
! { dg-do compile }
2
module test
3
use iso_c_binding, only: c_int
4
type, bind(c) :: foo
5
integer :: p ! { dg-warning "may not be C interoperable" }
6
end type
7
type(foo), bind(c) :: cp
8
end module test
9
10
! { dg-final { cleanup-modules "test" } }