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
2011-05-23 Tom de Vries <tom@codesourcery.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
c_assoc_3.f90
blob
0aceb42ec5bf7f58a0c3ad3746938ce2c8c918f5
1
! { dg-do compile }
2
!
3
! PR fortran/43303
4
!
5
! Contributed by Dennis Wassel
6
!
7
PROGRAM
c_assoc
8
use
iso_c_binding
9
type
(
c_ptr
) ::
x
10
x
=
c_null_ptr
11
print
*,
C_ASSOCIATED
(
x
)
! <<< was ICEing here
12
if
(
C_ASSOCIATED
(
x
))
call
abort
()
13
END PROGRAM
c_assoc