URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [c_ptr_tests_9.f03] - Rev 302
Compare with Previous | Blame | View Log
! { dg-do run }! { dg-options "-std=gnu" }! This test is pretty simple but is here just to make sure that the changes! done to c_ptr and c_funptr (translating them to void *) works in the case! where a component of a type is of type c_ptr or c_funptr.module c_ptr_tests_9use, intrinsic :: iso_c_binding, only: c_ptr, c_null_ptrtype myF90Derivedtype(c_ptr) :: my_c_ptrend type myF90Derivedcontainssubroutine sub0() bind(c)type(myF90Derived), target :: my_f90_typetype(myF90Derived), pointer :: my_f90_type_ptrmy_f90_type%my_c_ptr = c_null_ptrprint *, 'my_f90_type is: ', my_f90_typemy_f90_type_ptr => my_f90_typeprint *, 'my_f90_type_ptr is: ', my_f90_type_ptrend subroutine sub0end module c_ptr_tests_9program mainuse c_ptr_tests_9call sub0()end program main! { dg-final { cleanup-modules "c_ptr_tests_9" } }
