OSDN Git Service

2008-02-21 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / c_loc_tests_4.f03
1 ! { dg-do compile }
2 module c_loc_tests_4
3   use, intrinsic :: iso_c_binding
4   implicit none
5
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
11
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