Merged with mainline at revision 126229.
[official-gcc.git] / gcc / testsuite / gfortran.dg / c_ptr_tests_9.f03
blobdb5985908254a447a64a607432e99b3c1b5f9675
1 ! { dg-do run }
2 ! This test is pretty simple but is here just to make sure that the changes 
3 ! done to c_ptr and c_funptr (translating them to void *) works in the case 
4 ! where a component of a type is of type c_ptr or c_funptr.  
5 module c_ptr_tests_9
6   use, intrinsic :: iso_c_binding, only: c_ptr, c_null_ptr
8   type myF90Derived
9      type(c_ptr) :: my_c_ptr
10   end type myF90Derived
12 contains
13   subroutine sub0() bind(c)
14     type(myF90Derived), target :: my_f90_type
15     type(myF90Derived), pointer :: my_f90_type_ptr
17     my_f90_type%my_c_ptr = c_null_ptr
18     print *, 'my_f90_type is: ', my_f90_type
19     my_f90_type_ptr => my_f90_type
20     print *, 'my_f90_type_ptr is: ', my_f90_type_ptr
21   end subroutine sub0
22 end module c_ptr_tests_9
25 program main
26   use c_ptr_tests_9
28   call sub0()
29 end program main
31 ! { dg-final { cleanup-modules "c_ptr_tests_9" } }