2008-07-06 Kai Tietz <kai.tietz@onevision.com>
[official-gcc.git] / gcc / testsuite / gfortran.dg / c_loc_tests_4.f03
blob8453ec77272e1afdb957d5b19b3476317ad5f787
1 ! { dg-do compile }
2 module c_loc_tests_4
3   use, intrinsic :: iso_c_binding
4   implicit none
6 contains
7   subroutine sub0() bind(c)
8     integer(c_int), target, dimension(10) :: my_array
9     integer(c_int), pointer, dimension(:) :: my_array_ptr
10     type(c_ptr) :: my_c_ptr
12     my_array_ptr => my_array
13     my_c_ptr = c_loc(my_array_ptr) ! { dg-error "must be an associated scalar POINTER" }
14   end subroutine sub0
15 end module c_loc_tests_4