* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gfortran.dg / proc_ptr_43.f90
blobb1f77a06ec654c30c822cb46feafea27fb641812
1 ! { dg-do compile }
3 ! PR 58099: [4.8/4.9 Regression] [F03] over-zealous procedure-pointer error checking
5 ! Contributed by Daniel Price <daniel.price@monash.edu>
7 implicit none
8 procedure(real), pointer :: wfunc
10 wfunc => w_cubic
12 contains
14 pure real function w_cubic(q2)
15 real, intent(in) :: q2
16 w_cubic = 0.
17 end function
19 end