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
2010-12-20 Tobias Burnus <burnus@net-b.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
c_loc_tests_10.f03
blob
867ba18cc6cb35f6c17910b8fe156868bb979708
1
! { dg-do compile }
2
subroutine aaa(in)
3
use iso_c_binding
4
implicit none
5
integer(KIND=C_int), DIMENSION(:), TARGET :: in
6
type(c_ptr) :: cptr
7
cptr = c_loc(in) ! { dg-error "not C interoperable" }
8
end subroutine aaa