OSDN Git Service

PR debug/43329
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / iso_c_binding_init_expr.f03
1 ! { dg-do "compile" }
2 ! PR fortran/42354
3
4 use iso_c_binding
5 implicit none
6 integer, target :: a
7 type t
8   type(c_ptr) :: ptr = c_loc(a)    ! { dg-error "must be an intrinsic function" }
9 end type t
10 type(c_ptr) :: ptr2 = c_loc(a)     ! { dg-error "must be an intrinsic function" }
11 end