PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / c_assoc_3.f90
blob024c2d8d5d5171b336cd10a0f1f3d4a2e7116a80
1 ! { dg-do compile }
3 ! PR fortran/43303
5 ! Contributed by Dennis Wassel
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)) STOP 1
13 END PROGRAM c_assoc