1! { dg-do run }
2! { dg-options "-std=gnu" }
3! This test is pretty simple but is here just to make sure that the changes 
4! done to c_ptr and c_funptr (translating them to void *) works in the case 
5! where a component of a type is of type c_ptr or c_funptr.  
6module c_ptr_tests_9
7  use, intrinsic :: iso_c_binding, only: c_ptr, c_null_ptr
8
9  type myF90Derived
10     type(c_ptr) :: my_c_ptr
11  end type myF90Derived
12
13contains
14  subroutine sub0() bind(c)
15    type(myF90Derived), target :: my_f90_type
16    type(myF90Derived), pointer :: my_f90_type_ptr
17
18    my_f90_type%my_c_ptr = c_null_ptr
19    print *, 'my_f90_type is: ', my_f90_type%my_c_ptr
20    my_f90_type_ptr => my_f90_type
21    print *, 'my_f90_type_ptr is: ', my_f90_type_ptr%my_c_ptr
22  end subroutine sub0
23end module c_ptr_tests_9
24
25
26program main
27  use c_ptr_tests_9
28
29  call sub0()
30end program main
31