2014-04-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr37287-1.f90
blobc2d42e6de0f4bb7d36b038e9f70d23111d0ce280
1 ! PR debug/37287
2 ! { dg-do link }
3 ! { dg-options "-g -DPR37287_1" }
4 ! { dg-additional-sources pr37287-2.F90 }
5 module pr37287_1
6 use iso_c_binding, only : c_ptr, c_associated, c_null_ptr
7 implicit none
8 contains
9 subroutine set_null(ptr)
10 type(c_ptr), intent(out) :: ptr
11 ptr = c_null_ptr
12 end subroutine set_null
13 end module pr37287_1
14 end