* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gfortran.dg / proc_ptr_26.f90
blob8ae027fe870484a7e24b631a9e9c7aaba1106e8a
1 ! { dg-do run }
3 ! PR fortran/42597
5 ! Contributed by mrestelli@gmail.com
8 module mod_a
9 implicit none
11 abstract interface
12 pure function intf(x) result(y)
13 real, intent(in) :: x(:,:)
14 real :: y(size(x,1),size(x,1),size(x,2))
15 end function intf
16 end interface
18 procedure(intf), pointer :: p_fun => null()
19 end module mod_a
21 program main
22 use mod_a
23 implicit none
25 procedure(intf), pointer :: p_fun2 => null()
27 if (associated(p_fun) .or. associated(p_fun2)) &
28 call abort ()
29 end program main